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

Unified Diff: appengine/monorail/templates/tracker/issue-comments-part.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-comments-part.ezt
diff --git a/appengine/monorail/templates/tracker/issue-comments-part.ezt b/appengine/monorail/templates/tracker/issue-comments-part.ezt
new file mode 100644
index 0000000000000000000000000000000000000000..b0f1315e5ef804aa2abcfc0deda52953e4aa9b23
--- /dev/null
+++ b/appengine/monorail/templates/tracker/issue-comments-part.ezt
@@ -0,0 +1,60 @@
+[# Show the list of issue comments. This is used on the issue detail page and also
+ the issue peek page.
+
+ arg0: If any value, then show the "Delete comment" links, if appropriate.
+]
+
+<div class="cursor_off vt issuedescription" id="hc0">
+
+<pre class="issue_text">
+[for description.text_runs][include "render-rich-text.ezt" description.text_runs][end]
+</pre>
+
+[if-any description.attachments]
+ <div class="attachments">
+ [for description.attachments]
+ [include "issue-attachment-part.ezt" "0" description.attachments description.can_delete_bool]
+ [end]
+ </div>
+[end]
+
+</div>[#issuedescription]
+
+
+[if-any cmnt_pagination]
+ [if-any cmnt_pagination.visible]
+ <div class="vt issuecomment" width="100%" style="background:#e5ecf9; padding:2px .7em; margin:0; border:0">
+ [include "../framework/comment-pagination-part.ezt"]
+ </div>
+ [end]
+[end]
+
+[for comments]
+ [if-any arg0]
+ [define show_comment][if-any comments.visible_bool]Yes[else]No[end][end]
+ [else]
+ [define show_comment][if-any comments.is_deleted_bool]No[else]Yes[end][end]
+ [end]
+
+ [is show_comment "Yes"]
+ <div class="[if-any comments.is_deleted_bool] delcom ifExpand[end]">
+ [include "issue-comment-normal-part.ezt" arg0]
+ </div>
+ [if-any comments.is_deleted_bool]
+ <div class="ifCollapse">
+ [include "issue-comment-tombstone-part.ezt" arg0]
+ </div>
+ [end]
+ [else]
+ [include "issue-comment-tombstone-part.ezt" arg0]
+ [end][# show_comment]
+[end][#for comments]
+
+
+[if-any cmnt_pagination]
+ [if-any cmnt_pagination.visible]
+ <div class="vt issuecomment" width="100%" style="background:#e5ecf9; padding:2px .7em; margin:0">
+ [include "../framework/comment-pagination-part.ezt"]
+ </div>
+ [end]
+[end]

Powered by Google App Engine
This is Rietveld 408576698