Skip to content

Commit 0078057

Browse files
committed
Fix crash bug on live - don't display charter link on milestones
editing page if the group has no charter yet - Legacy-Id: 7879
1 parent 43e472b commit 0078057

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

ietf/templates/group/edit_milestones.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,9 @@ <h1>{{ title }}</h1>
4343

4444
<p>Links:
4545
<a href="{% url "group_charter" group_type=group.type_id acronym=group.acronym %}">{{ group.acronym }} {{ group.type.name }}</a>
46+
{% if group.charter %}
4647
- <a href="{% url "doc_view" name=group.charter.canonical_name %}">{{ group.charter.canonical_name }}</a>
48+
{% endif %}
4749
</p>
4850

4951

0 commit comments

Comments
 (0)