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

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

Issue 236490043: already existing ticket suggestions
Left Patch Set: changed variable name Created 8 years, 9 months ago
Right Patch Set: fixed summary label in the UI Created 8 years, 9 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 form_controls %} 7 {% block form_controls %}
8 <h2>{{ _("Add comment") }}</h2> 8 <h2>{{ _("Add comment") }}</h2>
9 <div class="form-group"> 9 <div class="form-group">
10 {{ gen.textarea(form['message'], class='form-control') }} 10 {{ gen.textarea(form['message'], class='form-control') }}
11 </div> 11 </div>
12 12
13 {% endblock %} 13 {% endblock %}
14 14
15 {% block ticket_metadata %} 15 {% block ticket_metadata %}
16 <div class="moin-ticket-metadata"> 16 <div class="moin-ticket-metadata">
17 <h2>{{ _("Edit metadata") }}</h2> 17 <h2>{{ _("Edit metadata") }}</h2>
18 <dl> 18 <dl>
19 <dt>
20 <label>{{ _("Summary") }}</label>
21 </dt>
22 <dd>
23 {{ forms.render(form['meta']['summary']) }}
24 </dd>
25 </dl>
26 <dl>
19 {{ forms.render_errors(form) }} 27 {{ forms.render_errors(form) }}
20 {{ forms.render(form['meta']['summary']) }}
21 {{ render_meta() }} 28 {{ render_meta() }}
22 </dl> 29 </dl>
23 <div class="moin-ticket-tags"> 30 <div class="moin-ticket-tags">
24 {{ _("Suggested Tags: ") }} 31 {{ _("Suggested Tags: ") }}
25 {% for suggested_tag in suggested_tags %} 32 {% for suggested_tag in suggested_tags %}
26 {{ suggested_tag }} 33 {{ suggested_tag }}
27 {% endfor %} 34 {% endfor %}
28 </div> 35 </div>
29 <dl> 36 <dl>
30 {{ render_selectlists() }} 37 {{ render_selectlists() }}
31 </dl> 38 </dl>
32 <h2>{{ _("Back references") }}</h2> 39 <h2>{{ _("Back references") }}</h2>
33 <dl> 40 <dl>
34 {{ render_backref() }} 41 {{ render_backref() }}
35 </dl> 42 </dl>
36 </div> 43 </div>
37 <div class="moin-ticket-submit"> 44 <div class="moin-ticket-submit">
38 {{ forms.render(form['submit']) }} 45 {{ forms.render(form['submit']) }}
39 </div> 46 </div>
40 {% endblock %} 47 {% endblock %}
LEFTRIGHT

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