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

Side by Side 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 unified diff | Download patch
OLDNEW
(Empty)
1 <div class="gridtile">
2 <table cellspacing="0" cellpadding="0">
3 <tr>
4 <td class="id">
5 [if-any read_only][else]
6 [if-any page_perms.SetStar]
7 <a class="star"
8 style="color:[if-any arg0]cornflowerblue[else]gray[end]; text-decoration: none;"
9 title="[if-any arg0]Un-s[else]S[end]tar this issue"
10 data-project-name="[projectname]" data-local-id="[arg1]">
11 [if-any arg0]&#9733;[else]&#9734;[end]
12 </a>
13 [end]
14 [end]
15 <a href="detail?id=[arg1]">[arg1]</a>
16 </td>
17 <td class="status">[arg2]</td>
18 </tr>
19 <tr>
20 <td colspan="2">
21 <div>
22 <a href="detail?id=[arg1]">[arg3]</a>
23 </div>
24 </td>
25 </tr>
26 </table>
27 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698