diff options
Diffstat (limited to 'ogcp/templates/actions')
-rw-r--r-- | ogcp/templates/actions/repo_details.html | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/ogcp/templates/actions/repo_details.html b/ogcp/templates/actions/repo_details.html new file mode 100644 index 0000000..ee45a97 --- /dev/null +++ b/ogcp/templates/actions/repo_details.html @@ -0,0 +1,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 %} + +<h1 class="m-5">{{_('Repo details')}}</h1> + +{{ wtf.quick_form(form, extra_classes="mx-5") }} +{% endblock %} |