* feat: Render the document shepherd writeup templates at two new URL. Those being `/doc/shepherdwriteuptemplate/group` and `/doc/shepherdwriteuptemplate/individual`. * Address review comments from @jennifer-richards * Fixes * Remove debug statement * Make bleach sanitizer not strip the `start` attribute of `ol` tags Also rearrange the code a bit * Don't sanitize the `python_markdown` output, it destroys wanted formatting * Restore bleach * Don't bleach tag `id`s.
10 lines
423 B
HTML
10 lines
423 B
HTML
{% extends "base.html" %}
|
|
{# Copyright The IETF Trust 2015, All Rights Reserved #}
|
|
{% load origin %}
|
|
{% load ietf_filters %}
|
|
{% load textfilters htmlfilters %}
|
|
{% block title %}Document Shepherd Write-Up{% if type == "group" %} for Group Documents{% elif type == "individual" %} for Individual Documents{% endif %}{% endblock %}
|
|
{% block content %}
|
|
{% origin %}
|
|
{{ writeup|urlize_ietf_docs|linkify }}
|
|
{% endblock %} |