datatracker/ietf/templates/group/stream_documents.html
Lars Eggert bbf088e18b Hopefully the final check-ins.
- Legacy-Id: 19909
2022-02-08 17:29:15 +00:00

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 %}