22 lines
766 B
HTML
22 lines
766 B
HTML
{% extends "base.html" %}
|
|
{# Copyright The IETF Trust 2015, All Rights Reserved #}
|
|
{% load origin %}
|
|
{% load ietf_filters static %}
|
|
{% block pagehead %}
|
|
<link rel="stylesheet" href="{% static "ietf/css/list.css" %}">
|
|
{% endblock %}
|
|
{% block title %}{{ stream }} stream documents{% endblock %}
|
|
{% block content %}
|
|
{% origin %}
|
|
<h1>{{ stream }} stream documents</h1>
|
|
{% if editable %}
|
|
<p>
|
|
<a class="btn btn-primary"
|
|
href="{% url "ietf.group.views.stream_edit" stream.slug %}">Assign delegates</a>
|
|
</p>
|
|
{% endif %}
|
|
{% include "doc/search/search_results.html" with start_table=True end_table=True %}
|
|
{% endblock %}
|
|
{% block js %}
|
|
<script src="{% static "ietf/js/list.js" %}"></script>
|
|
{% endblock %} |