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

Side by Side Diff: appengine/monorail/templates/framework/display-project-logo.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 [# This template displays the project logo with the file name and a View link.
2
3 arg0: Whether to display a checkbox to delete the logo.
4 ]
5
6 <table cellspacing="5" cellpadding="2" border="0">
7 <tr>
8 <td>
9 <b>[logo_view.filename]</b>
10 </td>
11 <td>
12 <a href="[logo_view.viewurl]" target="_blank" style="margin-left:.2em">Vie w</a>
13 </td>
14 </tr>
15 <tr>
16 <td colspan=2>
17 <a href="[logo_view.viewurl]" target="_blank">
18 <img src="[logo_view.thumbnail_url]" class="preview">
19 </a>
20 </td>
21 </tr>
22 [if-any arg0]
23 <tr>
24 <td colspan=2>
25 <input type="checkbox" name="delete_logo" id="delete_logo"> Delete this logo
26 </td>
27 </tr>
28 [end]
29 </table>
OLDNEW
« no previous file with comments | « appengine/monorail/templates/framework/debug.ezt ('k') | appengine/monorail/templates/framework/excessive-activity-page.ezt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698