15 lines
685 B
HTML
15 lines
685 B
HTML
{% extends "base.html" %}
|
|
{# Copyright The IETF Trust 2015, All Rights Reserved #}
|
|
{% load origin %}
|
|
{% load static %}
|
|
{% load django_bootstrap5 %}
|
|
{% 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="border p-3 my-3 pasted">{{ status_update.desc|default:"(none)"|linkify|urlize_ietf_docs }}</pre>
|
|
<a class="btn btn-secondary float-end"
|
|
href="{% url "ietf.meeting.views.proceedings" num=meeting.number %}">Back</a>
|
|
{% endblock %} |