* feat: Add Announcements link to nomcom home page * refactor: Move announcements link to top of page, outside nomcom_content * refactor: Don't code URL path into template
15 lines
573 B
HTML
15 lines
573 B
HTML
{% extends "nomcom/nomcom_public_base.html" %}
|
|
{# Copyright The IETF Trust 2015-2024, All Rights Reserved #}
|
|
{% load origin %}
|
|
{% block subtitle %}- Home{% endblock %}
|
|
{% block nomcom_announce %}
|
|
<p class="alert alert-info my-3">
|
|
Announcements from this nomcom are available
|
|
<a href="{% url "ietf.nomcom.views.announcements" %}#nomcom-{{year}}">here</a>
|
|
</p>
|
|
{% endblock %}
|
|
{% block nomcom_content %}
|
|
{% origin %}
|
|
<!-- [html-validate-disable-block heading-level -- FIXME: old HTML in the database] -->
|
|
{{ template|safe }}
|
|
{% endblock %} |