Fixed bugs on wginfo and agenda pages
- Legacy-Id: 3362
This commit is contained in:
parent
533cbe9eeb
commit
6d071d82ab
|
@ -209,6 +209,7 @@ def get_doc_sectionREDESIGN(id):
|
|||
return s
|
||||
|
||||
def get_wg_section(wg):
|
||||
s = ""
|
||||
if wg.state_id == "proposed":
|
||||
if wg.charter.charter_state_id == "intrev":
|
||||
s = '411'
|
||||
|
|
|
@ -59,7 +59,7 @@ is occasionally incorrect.</span>
|
|||
<tr><td>Area Director:</td>
|
||||
<td>
|
||||
{% if not wg.ad %}?{% else %}
|
||||
<a href="mailto:{{ wg.ad_email }}">{{ wg.ad.name }} <{{ wg.ad_email }}></a>{% endif %}
|
||||
<a href="mailto:{{ wg.areadirector.address }}">{{ wg.ad.name }} <{{ wg.areadirector.address }}></a>{% endif %}
|
||||
</td>
|
||||
</tr>
|
||||
{% if wg.techadvisors %}
|
||||
|
@ -115,7 +115,7 @@ is occasionally incorrect.</span>
|
|||
{% if wg.additional_urls %}
|
||||
<p>In addition to the charter maintained by the IETF Secretariat, there is additional information about this working group on the Web at:
|
||||
{% for url in wg.additional_urls %}
|
||||
<a href="{{ url.url }}">{{ url.description}}</a>{% if not forloop.last %}, {% endif %}
|
||||
<a href="{{ url.url }}">{{ url.name}}</a>{% if not forloop.last %}, {% endif %}
|
||||
{% endfor %}
|
||||
</p>
|
||||
{% endif %}
|
||||
|
|
Loading…
Reference in a new issue