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

Unified Diff: appengine/monorail/templates/tracker/issue-grid-tile.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-grid-tile.ezt
diff --git a/appengine/monorail/templates/tracker/issue-grid-tile.ezt b/appengine/monorail/templates/tracker/issue-grid-tile.ezt
new file mode 100644
index 0000000000000000000000000000000000000000..5ba39052f8b4b9d4abda507b2b9dbb0b9da4ad32
--- /dev/null
+++ b/appengine/monorail/templates/tracker/issue-grid-tile.ezt
@@ -0,0 +1,27 @@
+<div class="gridtile">
+ <table cellspacing="0" cellpadding="0">
+ <tr>
+ <td class="id">
+ [if-any read_only][else]
+ [if-any page_perms.SetStar]
+ <a class="star"
+ style="color:[if-any arg0]cornflowerblue[else]gray[end]; text-decoration:none;"
+ title="[if-any arg0]Un-s[else]S[end]tar this issue"
+ data-project-name="[projectname]" data-local-id="[arg1]">
+ [if-any arg0]&#9733;[else]&#9734;[end]
+ </a>
+ [end]
+ [end]
+ <a href="detail?id=[arg1]">[arg1]</a>
+ </td>
+ <td class="status">[arg2]</td>
+ </tr>
+ <tr>
+ <td colspan="2">
+ <div>
+ <a href="detail?id=[arg1]">[arg3]</a>
+ </div>
+ </td>
+ </tr>
+ </table>
+</div>

Powered by Google App Engine
This is Rietveld 408576698