24 lines
645 B
HTML
24 lines
645 B
HTML
{% extends "base.html" %}
|
|
{# Copyright The IETF Trust 2015, All Rights Reserved #}
|
|
{% load origin %}
|
|
{% load static %}
|
|
{% load bootstrap3 %}
|
|
{% load ietf_filters %}
|
|
{% load textfilters %}
|
|
|
|
{% block title %}
|
|
Status update for {{ group.type.name }} {{ group.acronym }} at {{meeting}}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
{% origin %}
|
|
<h1>
|
|
Status update for {{ group.type.name }} {{ group.acronym }} at {{meeting}}
|
|
</h1>
|
|
|
|
<pre class="pasted">{{ status_update.desc|default:"(none)"|linkify }}</pre>
|
|
|
|
<a class="btn btn-default pull-right" href="{% url "ietf.meeting.views.proceedings" num=meeting.number %}">Back</a>
|
|
|
|
{% endblock %}
|