|
33 | 33 | {% endcomment %} |
34 | 34 |
|
35 | 35 | {% load ietf_filters %} |
36 | | -<table class="ietfTable"> |
37 | | -<tr><th class="comment_date">Date</th><th class="comment_version">Version</th><th class="comment_by">By</th><th class="comment_text">Text</th></tr> |
| 36 | +<table class="ietf-table"> |
| 37 | +<tr><th class="comment_date">Date</th><th>Version</th><th>By</th><th>Text</th></tr> |
38 | 38 |
|
39 | 39 | {% for c in history %} |
40 | 40 | <tr class="{% cycle oddrow,evenrow %}"> |
41 | 41 | <td class="comment_date">{{ c.date|date:"Y-m-d" }}</td> |
42 | 42 |
|
43 | 43 | {% if c.is_rev %} |
44 | | -<td class="comment_version">{{ c.revision }}</td> |
45 | | -<td class="comment_by">(System)</td> |
46 | | -<td class="comment_text">New version available: <a href="http://tools.ietf.org/id/{{c.draft_name}}-{{c.revision}}.txt">{{c.draft_name}}-{{c.revision}}</a> {% ifnotequal c.revision "00" %}(<a href="http://tools.ietf.org/rfcdiff?url2={{c.draft_name}}-{{c.revision}}">diff from -{{c.revision|add:"-1"|stringformat:"02d"}}</a>){% endifnotequal %}</td> |
| 44 | +<td>{{ c.revision }}</td> |
| 45 | +<td>(System)</td> |
| 46 | +<td>New version available: <a href="http://tools.ietf.org/id/{{c.draft_name}}-{{c.revision}}.txt">{{c.draft_name}}-{{c.revision}}</a> {% ifnotequal c.revision "00" %}(<a href="http://tools.ietf.org/rfcdiff?url2={{c.draft_name}}-{{c.revision}}">diff from -{{c.revision|add:"-1"|stringformat:"02d"}}</a>){% endifnotequal %}</td> |
47 | 47 | {% endif %} |
48 | 48 |
|
49 | 49 | {% if c.is_text %} |
50 | | -<td class="comment_version"> </td> |
51 | | -<td class="comment_by">(System)</td> |
52 | | -<td class="comment_text">{{ c.text }}</td> |
| 50 | +<td> </td> |
| 51 | +<td>(System)</td> |
| 52 | +<td>{{ c.text }}</td> |
53 | 53 | {% endif %} |
54 | 54 |
|
55 | 55 | {% if c.is_com %} |
56 | | -<td class="comment_version">{{ c.comment.version }}</td> |
57 | | -<td class="comment_by">{{ c.info.by|escape }}</td> |
58 | | -<td class="comment_text">{% if c.comment.ballot %} |
| 56 | +<td>{{ c.comment.version }}</td> |
| 57 | +<td>{{ c.info.by|escape }}</td> |
| 58 | +<td>{% if c.comment.ballot %} |
59 | 59 | [Ballot {{ c.comment.get_ballot_display }}]<br /> |
60 | 60 | {% endif %} |
61 | 61 | {% if c.info.snipped %} |
62 | | -<div class="commentSnippet" id="commentS{{forloop.counter}}">{{ c.info.textSnippet|safe }}</div> |
63 | | -<span class="commentToggle" onclick="toggleComment({{forloop.counter}})" id="commentT{{forloop.counter}}">[show all]</span> |
64 | | -<div class="commentFull" id="commentF{{forloop.counter}}" style="display:none;"> |
| 62 | +<div id="commentS{{forloop.counter}}">{{ c.info.textSnippet|safe }}</div> |
| 63 | +<span class="comment_toggle" onclick="toggleComment({{forloop.counter}})" id="commentT{{forloop.counter}}">[show all]</span> |
| 64 | +<div id="commentF{{forloop.counter}}" style="display:none;"> |
65 | 65 | {{c.info.text|fill:"80"|format_textarea|safe}} |
66 | 66 | </div> |
67 | 67 | {% else %} |
|
0 commit comments