29 lines
760 B
HTML
29 lines
760 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 "jquery.tablesorter/css/theme.bootstrap.min.css" %}">
|
|
{% endblock %}
|
|
|
|
{% block title %}{{ stream }} stream documents{% endblock %}
|
|
|
|
{% block content %}
|
|
{% origin %}
|
|
<h1>{{ stream }} stream documents</h1>
|
|
|
|
{% if editable %}
|
|
<p>
|
|
<a class="btn btn-default" href="{% url "ietf.group.views.stream_edit" stream.slug %}">Assign delegates</a>
|
|
</p>
|
|
{% endif %}
|
|
|
|
{% include "doc/search/search_results.html" %}
|
|
{% endblock %}
|
|
|
|
{% block js %}
|
|
<script src="{% static "jquery.tablesorter/js/jquery.tablesorter.combined.min.js" %}"></script>
|
|
{% endblock %}
|