23 lines
510 B
HTML
23 lines
510 B
HTML
{% comment %}
|
|
Copyright The IETF Trust 2011, All Rights Reserved
|
|
{% endcomment %}
|
|
|
|
{% if meta.max %}
|
|
<p><b>Too many WGs match the query! Returning partial result only.</b></p>
|
|
{% endif %}
|
|
{% 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 %}
|