21 lines
658 B
HTML
21 lines
658 B
HTML
{% extends "base.html" %}
|
|
{# Copyright The IETF Trust 2015, All Rights Reserved #}
|
|
{% load origin %}
|
|
|
|
{% block title %}Milestones under review{% endblock %}
|
|
|
|
{% block content %}
|
|
{% origin %}
|
|
<h1>Milestones under review</h1>
|
|
|
|
{% for ad in ads %}
|
|
<h2>{{ ad.plain_name }}</h2>
|
|
{% for g in ad.groups_needing_review %}
|
|
<h3>{{ g.name }} ({{ g.acronym }})</h3>
|
|
{% include "group/milestones.html" with milestones=g.milestones_needing_review %}
|
|
<a class="btn btn-default" href="{% url "group_edit_milestones" group_type=g.type_id acronym=g.acronym %}">All {{ g.acronym }} milestones</a>
|
|
{% endfor %}
|
|
{% endfor %}
|
|
|
|
{% endblock %}
|