Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(798)

Side by Side Diff: appengine/chromium_rietveld/templates/issue.html

Issue 1058893004: Rietveld schedules builds on buildbucket (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 {%extends "issue_base.html"%} 1 {%extends "issue_base.html"%}
2 2
3 {%block head%}{{form.media}}{%endblock%} 3 {%block head%}{{form.media}}{%endblock%}
4 {%block issue_body%} 4 {%block issue_body%}
5 {%if issue.draft_count or has_draft_message%} 5 {%if issue.draft_count or has_draft_message%}
6 <div class="error"> 6 <div class="error">
7 You have {%if issue.draft_count%}<b>{{issue.draft_count}} draft</b> 7 You have {%if issue.draft_count%}<b>{{issue.draft_count}} draft</b>
8 comment{{issue.draft_count|pluralize}}{%endif%} 8 comment{{issue.draft_count|pluralize}}{%endif%}
9 {%if has_draft_message%}{%if issue.draft_count%}and {%endif%}a draft 9 {%if has_draft_message%}{%if issue.draft_count%}and {%endif%}a draft
10 message{%endif%}. 10 message{%endif%}.
(...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after
247 {%endfor%} 247 {%endfor%}
248 </div> 248 </div>
249 {% else %} 249 {% else %}
250 <div class="trybot-popup-checkboxes-with-categories"> 250 <div class="trybot-popup-checkboxes-with-categories">
251 <b>{{ tryserver }}</b><br> 251 <b>{{ tryserver }}</b><br>
252 {% output_categories_and_builders tryserver categories.items %} 252 {% output_categories_and_builders tryserver categories.items %}
253 </div> 253 </div>
254 {% endif %} 254 {% endif %}
255 <div class="trybot-button-div"> 255 <div class="trybot-button-div">
256 <input type="button" value="Update" 256 <input type="button" value="Update"
257 onclick="M_updatePendingTrybots('{{issue.key.id}}', '{{last_p atchset.key.id}}', '{{xsrf_token}}')"/> 257 onclick="M_updatePendingTrybots('{{issue.key.id}}', '{{last_p atchset.key.id}}', '{{issue.project}}')"/>
258 <input type="button" value="Close" 258 <input type="button" value="Close"
259 onclick="M_closePendingTrybots()"/> 259 onclick="M_closePendingTrybots()"/>
260 </div> 260 </div>
261 {% endfor %} 261 {% endfor %}
262 </div> 262 </div>
263 </form> 263 </form>
264 </div> 264 </div>
265 {%endif%} 265 {%endif%}
266 266
267 {%endblock issue_body%} 267 {%endblock issue_body%}
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698