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

Side by Side Diff: appengine/monorail/templates/tracker/issue-attachment-text.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 [define category_css]css/ph_detail.css[end]
2 [define page_css]css/d_sb.css[end]
3 [define title][filename] ([filesize])[end]
4 [include "../framework/master-header.ezt" "showtabs"]
5
6 <link type="text/css" rel="stylesheet"
7 href="/static/css/prettify.css?version=[app_version]">
8
9 <h3 style="margin-bottom: 0">Issue <a href="detail?id=[local_id][#TODO(jrobbins) : comment number]">[local_id]</a> attachment: [filename] <small>([filesize])</sm all>
10 </h3>
11
12
13
14 <div class="fc">
15 [if-any too_large]
16 <p><em>This file is too large to display.</em></p>
17
18 [else][if-any is_binary]
19
20 <p><em>
21 This file is not plain text (only UTF-8 and Latin-1 text encodings are cur rently supported).
22 </em></p>
23 [else]
24
25 [define revision]None[end]
26 [include "../framework/file-content-part.ezt"]
27 [include "../framework/file-content-js.ezt"]
28
29 [end][end]
30
31 </div>
32
33
34 [if-any should_prettify]
35 <script src="/static/js/prettify.js?version=[app_version]" nonce="[nonce]"></scr ipt>
36 <script type="text/javascript" nonce="[nonce]">
37 runOnLoad(function() {
38 prettyPrint();
39 });
40 </script>
41 [end]
42
43 [if-any perms.EditIssue]
44 [include "../framework/footer-script.ezt"]
45 <script type="text/javascript" nonce="[nonce]">
46 runOnLoad(function() {
47 _fetchOptions(
48 '[projectname]', 'issueOptions',
49 CS_env.token, [project.cached_content_timestamp]);
50 });
51 </script>
52 [end]
53
54 [include "../framework/master-footer.ezt"]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698