page being specific, writeup page generic with some specific code to setup writeups (only charter ported), history page being generic (I-D/RFC not ported, needs two event hack fixes), and ballot page not done, pending on multi-ballot solution. - Legacy-Id: 4091
25 lines
519 B
HTML
25 lines
519 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Writeups for {{ doc.name }}-{{ doc.rev }}{% endblock %}
|
|
|
|
{% block pagehead %}
|
|
<link rel="stylesheet" type="text/css" href="/css/doc.css"></link>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
{{ top|safe }}
|
|
|
|
{% for title, text, url in writeups %}
|
|
<div class="writeup">
|
|
<h2>{{ title }}</h2>
|
|
|
|
{% if can_edit %}<a href="{{ url }}" class="edit">Edit {{ title }}</a>{% endif %}
|
|
|
|
<pre {% if can_edit %}class="editable"{% endif %}>
|
|
{{ text }}
|
|
</pre>
|
|
</div>
|
|
{% endfor%}
|
|
|
|
{% endblock content %}
|