Skip to content

Commit 63b9850

Browse files
committed
Fixed the incorrect blankline placemnt in the refactored template for id-index and id-abstracts, when generating abstracts. Fixes issue ietf-tools#1076.
- Legacy-Id: 5913
1 parent 12bd97c commit 63b9850

1 file changed

Lines changed: 9 additions & 3 deletions

File tree

ietf/templates/idindex/id_index.txt

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,18 @@
11
{% autoescape off %}{% load ietf_filters %} Current Internet-Drafts
2-
This summary sheet provides an index of each Internet-Draft. These
2+
{% if with_abstracts %}
3+
This summary sheet provides a short synopsis of each Internet-Draft
4+
available within the "internet-drafts" directory at the shadow
5+
sites directory. These drafts are listed alphabetically by working
6+
group acronym and start date.{% else %}
7+
This summary sheet provides an index of each Internet-Draft. These
38
drafts are listed alphabetically by Working Group acronym and initial
4-
post date. Generated {{ time }}.
9+
post date.{% endif %} Generated {{ time }}.
510

611
{% for group in groups %}
712
{% filter underline %}{{ group.name }} ({{ group.acronym }}){% endfilter %}
813
{% for d in group.active_drafts %}
914
{% filter wordwrap:72|indent:2 %}"{{ d.title|clean_whitespace }}", {% for a in d.authors %}{{ a }}, {% endfor %}{{ d.rev_time|date:"Y-m-d"}}, <{{ d.name }}-{{ d.rev }}{{ d.exts }}>
1015
{% endfilter %}{% if with_abstracts %}
16+
{{ d.abstract.strip|unindent|fill:72|indent:6 }}
17+
{% endif %}{% endfor %}{% endfor %}{% endautoescape %}
1118

12-
{{ d.abstract.strip|unindent|fill:72|indent:6 }}{% endif %}{% endfor %}{% endfor %}{% endautoescape %}

0 commit comments

Comments
 (0)