| OLD | NEW |
| 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 Loading... |
| 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%} |
| OLD | NEW |