blob: 674abc2cf7f70aeb04a5ab1890e564c4bbdd98fe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
{% extends 'repos.html' %}
{% import "bootstrap/wtf.html" as wtf %}
{% set btn_back = true %}
{% block nav_repos %} active{% endblock %}
{% block nav_repos_details %} active{% endblock %}
{% block nav_repos_info %}active{% endblock %}
{% block content %}
<h2 class="mx-5 subhead-heading">{{_('Repo details')}}</h2>
{{ wtf.quick_form(form, extra_classes="mx-5") }}
{% endblock %}
|