diff options
Diffstat (limited to 'ogcp/templates/actions/repos_add.html')
-rw-r--r-- | ogcp/templates/actions/repos_add.html | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/ogcp/templates/actions/repos_add.html b/ogcp/templates/actions/repos_add.html new file mode 100644 index 0000000..7782014 --- /dev/null +++ b/ogcp/templates/actions/repos_add.html @@ -0,0 +1,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 %} |