datatracker/ietf/templates/group/change_review_secretary_settings.html
2016-11-08 16:24:28 +00:00

21 lines
672 B
HTML

{% extends "base.html" %}
{# Copyright The IETF Trust 2015, All Rights Reserved #}
{% load origin %}{% origin %}
{% load ietf_filters staticfiles 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 %}