datatracker/ietf/templates/group/change_review_secretary_settings.html
2020-06-27 13:51:19 +00:00

21 lines
667 B
HTML

{% extends "base.html" %}
{# Copyright The IETF Trust 2015, All Rights Reserved #}
{% load origin %}{% origin %}
{% load ietf_filters static bootstrap3 %}
{% block content %}
{% origin %}
<h1>{% block title %}Change your review secretary settings for {{ group.acronym }}{% endblock %}</h1>
<form class="change-review-secretary-settings" method="post">{% csrf_token %}
{% bootstrap_form settings_form %}
{% buttons %}
<a href="{{ back_url }}" class="btn btn-default pull-right">Cancel</a>
<button class="btn btn-primary" type="submit" name="action" value="change_settings">Save</button>
{% endbuttons %}
</form>
{% endblock %}