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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: appengine/monorail/templates/tracker/issue-missing-page.ezt
diff --git a/appengine/monorail/templates/tracker/issue-missing-page.ezt b/appengine/monorail/templates/tracker/issue-missing-page.ezt
new file mode 100644
index 0000000000000000000000000000000000000000..d570e1de104b9ff68bdf90387e0b8c98289891ba
--- /dev/null
+++ b/appengine/monorail/templates/tracker/issue-missing-page.ezt
@@ -0,0 +1,39 @@
+[define title]Issue Not Found[end]
+[include "../framework/master-header.ezt" "showtabs"]
+
+<h3>Issue Not Found</h3>
+
+<h4>What happened?</h4>
+
+[if-any moved_to_project_name]
+<p>This issue was moved to [moved_to_project_name].
+<a href="/p/[moved_to_project_name]/issues/detail?id=[moved_to_id]">Go to the issue</a>.</p>
+[else]
+
+ [if-any issue_missing]
+ <p>This issue does not exist because its issue ID
+ was skipped during issue creation.</p>
+ [else]
+ [if-any issue_not_specified]
+ <p>No issue id has been specified.</p>
+ [else]
+ [if-any issue_not_created]
+ <p>The specified issue ID does not exist.</p>
+ [end]
+ [end]
+ [end]
+[end]
+
+[if-any issue_deleted]
+<p>Issue [local_id] has been deleted.</p>
+
+ [if-any page_perms.DeleteIssue]
+ <form action="delete.do" method="post">
+ <input type="hidden" name="token" value="[delete_form_token]">
+ <input type="hidden" name="id" value="[local_id]">
+ <input type="submit" name="undelete" value="Undelete">
+ </form>
+ [end]
+[end]
+
+[include "../framework/master-footer.ezt"]
« 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