24 lines
644 B
HTML
24 lines
644 B
HTML
{% extends "base.html" %}
|
|
{# Copyright The IETF Trust 2015, All Rights Reserved #}
|
|
{% load origin %}
|
|
{% load bootstrap3 %}
|
|
|
|
{% block title %}{{ clist.long_name }}{% endblock %}
|
|
|
|
{% block content %}
|
|
{% origin %}
|
|
<h1>{{ clist.long_name }}</h1>
|
|
|
|
{% bootstrap_messages %}
|
|
|
|
{% if can_manage_list %}
|
|
<a class="btn btn-primary" href="{% url "ietf.community.views.manage_list" username=clist.user.username %}">
|
|
<i class="glyphicon glyphicon-cog"></i>
|
|
Manage list
|
|
</a>
|
|
{% endif %}
|
|
|
|
{% include "doc/search/search_results.html" with skip_no_matches_warning=True %}
|
|
{% include "community/list_menu.html" %}
|
|
{% endblock %}
|