Skip to content

Commit 39d5945

Browse files
committed
Fix URL pattern
- Legacy-Id: 3828
1 parent fa09416 commit 39d5945

1 file changed

Lines changed: 11 additions & 3 deletions

File tree

ietf/templates/wginfo/wg_base.html

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,17 +51,25 @@
5151
.ietf-concluded-warning { background:red;color:white;padding:2px 2px;}
5252
.ietf-proposed-bg { }
5353
.ietf-proposed-warning { background:green;color:white;padding:2px 2px;}
54+
.ietf-box th {
55+
font-weight: bold;
56+
padding-top: 1em;
57+
text-align: left;
58+
}
59+
.ietf-box tr:first-child th {
60+
padding-top: 0;
61+
}
5462
{% endblock morecss %}
5563

5664
{% block content %}
5765
<div {% if concluded %}class="ietf-concluded-bg"{% endif %} {% if proposed %}class="ietf-proposed-bg"{% endif %}>
5866
<h1>{{wg.group_acronym.name}} ({{wg.group_acronym.acronym}}){% if concluded %}<br/><span class="ietf-concluded-warning">(concluded WG)</span>{% endif %}{% if proposed %}<br/><span class="ietf-proposed-warning">(proposed WG)</span>{% endif %}</h1>
5967

6068
<div class="ietf-navset">
61-
{% ifequal selected "documents" %}<span class="selected">Documents</span>{% else %}<a href="{% url wginfo.views.wg_documents_html acronym=wg.group_acronym.acronym %}">Documents</a>{% endifequal %} |
62-
{% ifequal selected "charter" %}<span class="selected">Charter</span>{% else %}<a href="{% url wginfo.views.wg_charter acronym=wg.group_acronym.acronym %}">Charter</a>{% endifequal %} |
69+
{% ifequal selected "documents" %}<span class="selected">Documents</span>{% else %}<a href="{% url ietf.wginfo.views.wg_documents_html acronym=wg.group_acronym.acronym %}">Documents</a>{% endifequal %} |
70+
{% ifequal selected "charter" %}<span class="selected">Charter</span>{% else %}<a href="{% url ietf.wginfo.views.wg_charter acronym=wg.group_acronym.acronym %}">Charter</a>{% endifequal %} |
6371
{% wgchairs_admin_options wg %}
64-
<a {% if selected == "history" %}class="selected"{% else %}href="{% url wginfo.views.history acronym=wg.group_acronym.acronym %}"{% endif %}>History</a> |
72+
<a {% if selected == "history" %}class="selected"{% else %}href="{% url ietf.wginfo.views.history acronym=wg.group_acronym.acronym %}"{% endif %}>History</a> |
6573
{% if wg.clean_email_archive|startswith:"http:" or wg.clean_email_archive|startswith:"ftp:" %}
6674
<a href="{{ wg.clean_email_archive }}">List Archive &#187;</a> |
6775
{% endif %}

0 commit comments

Comments
 (0)