datatracker/ietf/secr/templates/groups/charter.html
Lars Eggert 8bc7fde027 More fixes.
- Legacy-Id: 19828
2022-01-11 07:02:39 +00:00

26 lines
632 B
HTML

{% extends "base_site.html" %}
{% load staticfiles %}
{% block title %}Groups - Charter{% endblock %}
{% block extrahead %}{{ block.super }}
<script src="{% static 'secr/js/utils.js' %}"></script>
{% endblock %}
{% block breadcrumbs %}{{ block.super }}
&raquo; <a href="../../">Groups</a>
&raquo; <a href="../">{{ group.acronym }}</a>
&raquo; Charter
{% endblock %}
{% block content %}
<div class="module group-container">
<h2>Groups - Charter</h2>
<pre>
{% if charter_txt %}{{ charter_text }}{% else %}Charter not found.{% endif %}
</pre>
</div> <!-- module -->
{% endblock %}