summaryrefslogtreecommitdiffstats
path: root/ogcp/templates/actions/delete_repo.html
blob: 17902ddddf7a9e801ae6dbd17dde75b27113c0a6 (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 %}

<h2 class="mx-5 subhead-heading">{{_('Delete repo')}}</h2>

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