Skip to content

Commit a886f9d

Browse files
committed
fix two issues with proceedings generation. Commit ready for merge.
- Legacy-Id: 7653
1 parent d220932 commit a886f9d

2 files changed

Lines changed: 2 additions & 3 deletions

File tree

ietf/secr/templates/proceedings/index.html

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,7 @@ <h3><a name="irtf" id="irtf">5. Internet Research Task Force </h3>
4747
<h3>6. Other</h3>
4848
<ul>
4949
{% for group in extras %}
50-
<li><a href="{{ group.acronym }}.html">6.{{ forloop.counter }} {{ group.name }}</a><
51-
/li>
50+
<li><a href="{{ group.acronym }}.html">6.{{ forloop.counter }} {{ group.name }}</a></li>
5251
{% endfor %}
5352
</ul>
5453
{% endif %}

ietf/secr/templates/proceedings/select.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
var ajax_load = "<p><h4 align='center'>Generating Proceedings. This may take a few minutes.</h3><img class='loading' src='{{ SECR_STATIC_URL }}img/ajax-loader.gif' alt='loading...' /></p>";
1616
var url = window.location.pathname;
1717
var parts = url.split("/");
18-
var loadUrl = "/proceedings/ajax/generate-proceedings/" + parts[2] + "/";
18+
var loadUrl = "/secr/proceedings/ajax/generate-proceedings/" + parts[2] + "/";
1919
$("#private-functions").html(ajax_load).load(loadUrl);
2020
});
2121

0 commit comments

Comments
 (0)