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

Side by Side Diff: appengine/monorail/templates/tracker/issue-missing-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 title]Issue Not Found[end]
2 [include "../framework/master-header.ezt" "showtabs"]
3
4 <h3>Issue Not Found</h3>
5
6 <h4>What happened?</h4>
7
8 [if-any moved_to_project_name]
9 <p>This issue was moved to [moved_to_project_name].
10 <a href="/p/[moved_to_project_name]/issues/detail?id=[moved_to_id]">Go to the is sue</a>.</p>
11 [else]
12
13 [if-any issue_missing]
14 <p>This issue does not exist because its issue ID
15 was skipped during issue creation.</p>
16 [else]
17 [if-any issue_not_specified]
18 <p>No issue id has been specified.</p>
19 [else]
20 [if-any issue_not_created]
21 <p>The specified issue ID does not exist.</p>
22 [end]
23 [end]
24 [end]
25 [end]
26
27 [if-any issue_deleted]
28 <p>Issue [local_id] has been deleted.</p>
29
30 [if-any page_perms.DeleteIssue]
31 <form action="delete.do" method="post">
32 <input type="hidden" name="token" value="[delete_form_token]">
33 <input type="hidden" name="id" value="[local_id]">
34 <input type="submit" name="undelete" value="Undelete">
35 </form>
36 [end]
37 [end]
38
39 [include "../framework/master-footer.ezt"]
OLDNEW
« no previous file with comments | « appengine/monorail/templates/tracker/issue-meta-part.ezt ('k') | appengine/monorail/templates/tracker/issue-original-page.ezt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698