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

Side by Side Diff: appengine/monorail/templates/tracker/admin-statuses-page.ezt

Issue 1868553004: Open Source Monorail (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: Rebase Created 4 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
(Empty)
1 [define category_css]css/ph_detail.css[end]
2 [include "../framework/master-header.ezt" "showtabs"]
3
4 [if-any read_only][include "../framework/read-only-rejection.ezt"]
5 [else]
6
7 <form action="adminStatuses.do" id="adminStatuses" method="POST">
8 <input type="hidden" name="token" value="[form_token]">
9
10 [if-any perms.EditProject]
11 <table class="vt">
12 <tr><td>
13 <h4>Open Issue Status Values</h4>
14 <div class="section">
15 <textarea name="predefinedopen" rows="6" cols="75" style="tab-size:18">[ for config.open_statuses]
16 [config.open_statuses.commented][config.open_statuses.name_padded][if-any config .open_statuses.docstring]&#09;= [config.open_statuses.docstring][end][end]
17 </textarea>
18 </div>
19 <h4>Closed Issue Status Values</h4>
20 <div class="section">
21 <textarea name="predefinedclosed" rows="6" cols="75" style="tab-size:18" >[for config.closed_statuses]
22 [config.closed_statuses.commented][config.closed_statuses.name_padded][if-any co nfig.closed_statuses.docstring]&#09;= [config.closed_statuses.docstring][end][en d]
23 </textarea><br><br>
24
25 If an issue's status is being set to one of these values, offer to merge issues:<br>
26 <input type="text" size="75" name="statuses_offer_merge"
27 value="[for config.statuses_offer_merge][config.statuses_offer_merge][i f-index config.statuses_offer_merge last][else], [end][end]">
28 </div>
29 </td>
30 <td style="padding-left:.7em">
31 <div class="tip">
32 <b>Instructions:</b><br> List one status value per line in desired so rt-order.<br><br>
33 Optionally, use an equals-sign to document the meaning of each status value.
34 </div>
35 </td>
36 </tr>
37 </table>
38 [else]
39 <h4>Open Issue Status Values</h4>
40 <div class="section">
41 <table cellspacing="0" cellpadding="2" border="0" class="results striped" wi dth="100%">
42 <tr>
43 <th style="min-width:14em">Status</th>
44 <th width="100%">Meaning</th>
45 </tr>
46 [for config.open_statuses]
47 <tr>
48 <td style="white-space:nowrap; padding-right:2em;">[config.open_status es.name]</td>
49 <td>[config.open_statuses.docstring]</td>
50 </tr>
51 [end]
52 </table>
53 </div>
54
55 <h4>Closed Issue Status Values</h4>
56 <div class="section">
57 <table cellspacing="0" cellpadding="2" border="0" class="results striped" wi dth="100%">
58 <tr>
59 <th style="min-width:14em">Status</th>
60 <th width="100%">Meaning</th>
61 </tr>
62 [for config.closed_statuses]
63 <tr>
64 <td style="white-space:nowrap; padding-right:2em;">[config.closed_sta tuses.name]</td>
65 <td>[config.closed_statuses.docstring]</td>
66 </tr>
67 [end]
68 </table>
69 </div>
70 [end]
71
72
73 [if-any perms.EditProject]
74 <input type="submit" id="savechanges" name="btn" value="Save changes" class=" submit">
75 [end]
76 </form>
77
78 [end]
79
80 [include "../framework/footer-script.ezt"]
81 [include "../framework/master-footer.ezt"]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698