summaryrefslogtreecommitdiffstats
path: root/ogcp/templates/actions/repos_add.html
blob: 77820141ba4361bd68d8d0524de63af51eb2df4d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{% 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_add %}active{% endblock %}
{% block content %}

<h1 class="m-5">{{_('Add repo')}}</h1>

{{ wtf.quick_form(form,
                  action=url_for('action_repo_add'),
                  method='post',
                  button_map={'submit': 'primary'},
                  extra_classes="mx-5") }}
{% endblock %}