16 lines
287 B
HTML
16 lines
287 B
HTML
{% extends "base.html" %}
|
|
{% load ietf_filters %}
|
|
|
|
{% block title %}IESG Telechat Minutes{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<center><h2>Minutes of the IESG Teleconferences</h2></center>
|
|
|
|
<blockquote>
|
|
{{ object.telechat_minute|escape|linebreaks|urlize }}
|
|
</blockquote>
|
|
{% endblock %}
|