59 lines
1.7 KiB
HTML
Executable file
59 lines
1.7 KiB
HTML
Executable file
{% extends "base_site.html" %}
|
|
{% load ietf_filters %}
|
|
{% load staticfiles %}
|
|
{% block title %}Proceedings{% endblock %}
|
|
|
|
{% block extrahead %}{{ block.super }}
|
|
<script type="text/javascript" src="{% static 'secr/js/utils.js' %}"></script>
|
|
|
|
<script type="text/javascript">
|
|
$(document).ready(function() {
|
|
$.ajaxSetup ({
|
|
cache: false
|
|
});
|
|
|
|
$('#generate-button').click(function(){
|
|
var ajax_load = '<p><h4 align="center">Generating Proceedings. This may take a few minutes.</h3><img class="loading" src="{% static "secr/img/ajax-loader.gif" %}" alt="loading..." /></p>';
|
|
var url = window.location.pathname;
|
|
var parts = url.split("/");
|
|
var loadUrl = "/secr/proceedings/ajax/generate-proceedings/" + parts[3] + "/";
|
|
$("#private-functions").html(ajax_load).load(loadUrl);
|
|
});
|
|
|
|
|
|
});
|
|
|
|
</script>
|
|
{% endblock %}
|
|
|
|
|
|
{% block breadcrumbs %}{{ block.super }}
|
|
» <a href="{% url 'ietf.secr.proceedings.views.main' %}">Proceedings</a>
|
|
» {{ meeting.number }}
|
|
{% endblock %}
|
|
|
|
{% block instructions %}
|
|
<a href="https://www.ietf.org/instructions/meeting_materials_tool.html" target="_blank">Instructions</a>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<div class="module interim-container">
|
|
|
|
<div class="inline-related">
|
|
<h2>Secretariat Only Functions</h2>
|
|
<div id="private-functions">
|
|
|
|
{% include "includes/proceedings_functions.html" %}
|
|
|
|
</div> <!-- private-functions -->
|
|
</div> <!-- inline-group -->
|
|
|
|
</div> <!-- module -->
|
|
|
|
{% endblock %}
|
|
|
|
{% block footer-extras %}
|
|
{% include "includes/upload_footer.html" %}
|
|
{% endblock %}
|