| 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"]
|
|
|