30 lines
770 B
HTML
30 lines
770 B
HTML
{% extends "base.html" %}
|
|
{% comment %}
|
|
Copyright The IETF Trust 2011, All Rights Reserved
|
|
{% endcomment %}
|
|
|
|
{% block title %}Working Groups in IESG process{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>Working Groups in IESG process</h1>
|
|
|
|
<p>
|
|
<span id="create_wg" class="yui-button yui-link-button" style="margin-left:2px;"><span class="first-child"><a href="/wgcharter/create/">Start new WG charter effort</a></span></span>
|
|
</p>
|
|
|
|
{% if not recs %}
|
|
<p><b>No WGs match your query.</b></p>
|
|
{% else %}
|
|
<table class="ietf-table ietf-doctable">
|
|
<tr>
|
|
{% for hdr in meta.hdrs %}
|
|
{% include "wgcharter/table_header.html" %}
|
|
{% endfor %}
|
|
</tr>
|
|
{% for wg in recs %}
|
|
{% include "wgcharter/search_result_row.html" %}
|
|
{% endfor %}
|
|
</table>
|
|
{% endif %}
|
|
{% endblock content %}
|