datatracker/ietf/templates/group/stream_edit.html

47 lines
1.2 KiB
HTML

{% extends "base.html" %}
{# Copyright The IETF Trust 2015, All Rights Reserved #}
{% load origin %}
{% load static %}
{% load ietf_filters %}
{% load bootstrap3 %}
{% block title %}Manage {{ group.name }} RFC stream{% endblock %}
{% block pagehead %}
{{ form.media.css }}
{% endblock %}
{% block content %}
{% origin %}
<h1>Manage {{ group.name }} RFC stream</h1>
<p>
<b>Chair{{ chairs|pluralize }}:</b>
{% for chair in chairs %}
{{ chair.person.plain_name }} &lt;{{ chair.address }}&gt;
{% if not forloop.last %}, {% endif %}
{% endfor %}
</p>
<p>
Delegates can be assigned with permission to do the tasks of the
chair{{ chairs|pluralize }}. Note that in order to actually do so, the delegates need a
datatracker account. New accounts can be <a href="{% url "ietf.ietfauth.views.create_account" %}">created here</a>.
</p>
<form method="post">
{% csrf_token %}
{% bootstrap_form form %}
{% buttons %}
<button type="submit" class="btn btn-primary">Save</button>
<a class="btn btn-default pull-right" href="{% url "ietf.group.views.streams" %}{{ group.acronym }}">Back</a>
{% endbuttons %}
</form>
{% endblock %}
{% block js %}
{{ form.media.js }}
{% endblock %}