18 lines
350 B
HTML
18 lines
350 B
HTML
{# Copyright The IETF Trust 2007, All Rights Reserved #}
|
|
{% extends "base.html" %}
|
|
|
|
{% block title %}IPR Declarations{% endblock %}
|
|
|
|
{% block content %}
|
|
<h2>IPR Declarations - {{ year }}</h2>
|
|
|
|
<a href="../../">All dates</a>
|
|
|
|
<ul>
|
|
{% for month in date_list %}
|
|
<li><a href="{{month|date:"b" }}/">{{ month|date:"F" }}
|
|
{% endfor %}
|
|
</ul>
|
|
|
|
{% endblock %}
|