26 lines
640 B
HTML
26 lines
640 B
HTML
{% extends "base.html" %}
|
|
{% comment %}
|
|
Copyright 2011 The IETF Trust. All rights reserved.
|
|
{% endcomment %}
|
|
|
|
{% block title %}Working Group Charters{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>Working Group Charters</h1>
|
|
|
|
<div class="ietf-box search_form_box">
|
|
{% include "wgcharter/search_form.html" %}
|
|
</div>
|
|
|
|
<div id="search_results">
|
|
{% if meta.searching %}
|
|
{% include "wgcharter/search_results.html" %}
|
|
{% endif %}
|
|
</div>
|
|
{% endblock content %}
|
|
{% block scripts %}
|
|
YAHOO.util.Event.onContentReady("search_submit_button", function () {
|
|
var oButton = new YAHOO.widget.Button("search_submit_button", {});
|
|
});
|
|
{% endblock scripts %}
|