19 lines
655 B
HTML
19 lines
655 B
HTML
{% extends "wgcharter/wg_main.html" %}
|
|
{% comment %}
|
|
Copyright The IETF Trust 2011, All Rights Reserved
|
|
{% endcomment %}
|
|
|
|
{% load ietf_filters %}
|
|
|
|
{% block tab_content %}
|
|
{% include "wgcharter/charter_diffs.html" %}
|
|
<h2 style="margin-top:1em;">WG History</h2>
|
|
{% if user|in_group:"Area_Director,Secretariat" %}
|
|
<div style="margin-bottom:8px" id="history_actions">
|
|
<span id="wg_add_comment_button" class="yui-button yui-link-button" style="margin-left:2px;"><span class="first-child"><a href="{% url wg_add_comment name=wg.acronym %}">Add comment</a></span></span>
|
|
</div>
|
|
{% endif %}
|
|
|
|
{% include "wgcharter/wg_history.html" %}
|
|
{% endblock tab_content %}
|