Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(142)

Delta Between Two Patch Sets: MoinMoin/templates/ticket/modify.html

Issue 256840043: ticket comments
Left Patch Set: created indented comments/replies threads Created 8 years, 7 months ago
Right Patch Set: created indented comments/replies threads Created 8 years, 7 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « MoinMoin/templates/ticket/base.html ('k') | MoinMoin/templates/ticket/submit.html » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
1 {% extends "ticket/base.html" %} 1 {% extends "ticket/base.html" %}
2 2
3 {% block title_text %} 3 {% block title_text %}
4 {{ _("Ticket: %(summary)s", summary=item.meta['summary']) }} 4 {{ _("Ticket: %(summary)s", summary=item.meta['summary']) }}
5 {% endblock %} 5 {% endblock %}
6 6
7 {% block ticket_content %} 7 {% block ticket_content %}
8 <h3>{{ _("Edit metadata") }}</h3> 8 <h3>{{ _("Edit metadata") }}</h3>
9 <div id="moin-ticket-layout"> 9 <div id="moin-ticket-layout">
10 <dl> 10 <dl>
(...skipping 16 matching lines...) Expand all
27 </div> 27 </div>
28 </div> 28 </div>
29 <div id="moin-ticket-layout"> 29 <div id="moin-ticket-layout">
30 <dl> 30 <dl>
31 {{ render_selectlists() }} 31 {{ render_selectlists() }}
32 </dl> 32 </dl>
33 <dt> 33 <dt>
34 {{ subscribe() }} 34 {{ subscribe() }}
35 </dt> 35 </dt>
36 </div> 36 </div>
37 <div id="moin-ticket-layout">
38 <dl>
39 <dt>
40 {{ gen.label(form['data_file']) }}
41 </dt>
42 <dd>
43 {{ gen.input(form['data_file'], type='file') }}
44 </dd>
45 </dl>
46 </div>
37 <div style="clear:both;"></div> 47 <div style="clear:both;"></div>
38 48
39 <h3>{{ _("Back references") }}</h3> 49 <h3>{{ _("Back references") }}</h3>
40 <div id="moin-ticket-layout"> 50 <div id="moin-ticket-layout">
41 <dl> 51 <dl>
42 {{ render_backref() }} 52 {{ render_backref() }}
43 </dl> 53 </dl>
54 </div>
55 <div style="clear:both;"></div>
56
57 <h3>{{ _("Files") }}</h3>
58 <div id="moin-ticket-layout">
59 {% if files %}
60 <div class="moin-item-index">
61 {% for file in files %}
62 {{ render_file(file) }}
63 {% endfor %}
64 </div>
65 <div class="moin-clr"></div>
66 {% endif %}
44 </div> 67 </div>
45 <div style="clear:both;"></div> 68 <div style="clear:both;"></div>
46 69
47 <h3>{{ _("Ticket Description") }}</h3> 70 <h3>{{ _("Ticket Description") }}</h3>
48 <div id="moin-ticket-layout"> 71 <div id="moin-ticket-layout">
49 {% if data_rendered %} 72 {% if data_rendered %}
50 {{ data_rendered }} 73 {{ data_rendered }}
51 {% endif %} 74 {% endif %}
52 </div> 75 </div>
53 <div style="clear:both;"></div> 76 <div style="clear:both;"></div>
54 77
55 <h3>{{ _("Add Comment") }}</h3> 78 <h3>{{ _("Add Comment") }}</h3>
56 <div id="moin-ticket-layout"> 79 <div id="moin-ticket-layout">
57 {{ render_comments() }} 80 {{ render_comments() }}
58 <div class="form-group"> 81 <div class="form-group">
59 {{ gen.textarea(form['message'], class='form-control') }} 82 {{ gen.textarea(form['message'], class='form-control') }}
60 </div> 83 </div>
61 </div> 84 </div>
62 {{ forms.render(form['submit']) }} 85 {{ forms.render(form['submit']) }}
63 {% endblock %} 86 {% endblock %}
LEFTRIGHT

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b