datatracker/ietf/templates/group/stream_edit.html
Henrik Levkowetz 942352c50b Merged in [9766] from lars@netapp.com:
More HTML fixes.
 - Legacy-Id: 9787
Note: SVN reference [9766] has been migrated to Git commit 77f555bdbdfa653e4b5a0589ead9eda6632f10d7
2015-07-18 12:42:38 +00:00

51 lines
1.4 KiB
HTML

{% extends "base.html" %}
{# Copyright The IETF Trust 2015, All Rights Reserved #}
{% load origin %}
{% load ietf_filters %}
{% load bootstrap3 %}
{% block title %}Manage {{ group.name }} RFC stream{% endblock %}
{% block pagehead %}
<link rel="stylesheet" href="/css/lib/select2.css">
<link rel="stylesheet" href="/css/lib/select2-bootstrap.css">
{% endblock %}
{% block content %}
{% origin %}
<h1>Manage {{ group.name }} RFC stream</h1>
{% bootstrap_messages %}
<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 "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_stream.streams" %}{{ group.acronym }}">Back</a>
{% endbuttons %}
</form>
{% endblock %}
{% block js %}
<script src="/js/lib/select2-3.5.2.min.js"></script>
<script src="/js/select2-field.js"></script>
{% endblock %}