Try a different way of wrapping ballot/comment fields and shepherd writeups. Related to #1673. - Legacy-Id: 9679 Note: SVN reference [9663] has been migrated to Git commit 3c03290a52e80c2d855d4a7b291ac0747e3d8681
22 lines
638 B
HTML
22 lines
638 B
HTML
{% extends "base.html" %}
|
|
{# Copyright The IETF Trust 2015, All Rights Reserved #}
|
|
{% load origin %}
|
|
{% load ietf_filters %}
|
|
|
|
{% block title %}
|
|
Shepherd writeup for {{ doc.canonical_name }}-{{ doc.rev }}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
{% origin %}
|
|
<h1>Shepherd writeup<br><small>{{ doc.canonical_name }}-{{ doc.rev }}</small></h1>
|
|
|
|
<pre class="pasted">{{writeup|escape|urlize}}</pre>
|
|
|
|
{% if can_edit %}
|
|
<a class="btn btn-primary" href="{% url "doc_edit_shepherd_writeup" name=doc.name %}">Edit</a>
|
|
{% endif %}
|
|
<a class="btn btn-default pull-right" href="{% url "doc_view" name=doc.name %}">Back</a>
|
|
|
|
{% endblock %}
|