datatracker/ietf/templates/group/group_about_status_meeting.html
Lars Eggert bbf088e18b Hopefully the final check-ins.
- Legacy-Id: 19909
2022-02-08 17:29:15 +00:00

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 %}