Include associated drafts in milestone overview on WG charter page.

- Legacy-Id: 4535
This commit is contained in:
Ole Laursen 2012-06-27 16:47:31 +00:00
parent 319a202900
commit bbee25b924
2 changed files with 10 additions and 3 deletions

View file

@ -1,12 +1,17 @@
{# assumes milestones is in context #}
<table>
<table class="milestones">
{% for milestone in milestones %}
<tr>
<td width="80px">
<td class="due">
{% if milestone.resolved %}{{ milestone.resolved }}{% else %}{{ milestone.due|date:"M Y" }}{% endif %}
</td>
<td>{{ milestone.desc|escape }}</td>
<td>
<div>{{ milestone.desc|escape }}</div>
{% for d in milestone.docs.all %}
<a class="doc" href="{% url doc_view name=d.name %}">{{ d.name }}</div>
{% endfor %}
</td>
</tr>
{% endfor %}
</table>

View file

@ -191,3 +191,5 @@ form table .help {
.ballot-content h2.ad-ballot-comment { background: #2647A0; color: #fff; padding: 2px 4px; font-size: 108%; margin-top: 0;}
table.milestones td.due { vertical-align: top; width: 80px; }
table.milestones .doc { display: block; padding-left: 1em; }