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

Side by Side Diff: appengine/monorail/templates/project/project-summary-page.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 [include "../framework/master-header.ezt" "showtabs"]
3 [# TODO: add UI element permissions when I add editing elements to this page. ]
4 [define show_star][if-any project_stars_enabled][if-any logged_in_user][if-any r ead_only][else]yes[end][end][end][end]
5
6 <div style="font-size:140%; margin-top:1em">Project: <b>[projectname]</b></div>
7 <div class="section">
8 <div><i>[project_summary]</i></div>
9
10 [if-any show_star]
11 <div>
12 <a class="star" id="star"
13 style="color:[if-any is_project_starred]cornflowerblue[else]gray[end];"
14 title="[if-any is_project_starred]Un-s[else]S[end]tar this project">
15 [if-any is_project_starred]&#9733;[else]&#9734;[end]
16 </a>
17 Starred by [num_stars] user[plural]
18 </div>
19 [end]
20 </div>
21
22
23 <h4>Project description</h4>
24 <div class="section">
25 [format "raw"][formatted_project_description][end]
26 </div>
27
28 <h4>Project access</h4>
29 <div class="section">
30 [access_level.name]
31 </div>
32
33
34 [if-any home_page]
35 <h4>Project home page</h4>
36 <div class="section">
37 <a href="[home_page]">[home_page]</a>
38 </div>
39 [end]
40
41
42 <!-- TODO(jrobbins): expose this later when it is more fully baked.
43
44 <h4>Issue tracking process</h4>
45 <div class="section">
46 Brief paragraph about how you intend this issue tracker to be used.
47
48 </div>
49
50
51 <h4>Ground rules</h4>
52 <ul>
53 <li>Non-members may enter new issues, but they will be moderated...</li>
54 <li>Please keep to the facts of the issue, don't try to advocate.</li>
55 <li>We are not currently looking for feature requests from non-members.</li>
56 </ul>
57
58
59
60 <h4>Guidelines</h4>
61 <ul>
62 <li>Make sure the defect is verified with the latest build</li>
63 <li>Another bullet item describing how to collaborate in this project</li>
64 <li>A few more</li>
65 <li>And going into a little detail</li>
66 <li>But not too much... also need good defaults and examples</li>
67 </ul>
68
69
70 <h4>For more information</h4>
71 <ul>
72 <li>Link to external docs</li>
73 <li>And discussion forums</li>
74 </ul>
75
76 -->
77
78 <script type="text/javascript" nonce="[nonce]">
79 runOnLoad(function() {
80 if ($("star")) {
81 [# The user viewing this page wants to star the project *on* this page]
82 $("star").addEventListener("click", function () {
83 _TKR_toggleStar($("star"), "[projectname]");
84 });
85 }
86 });
87 </script>
88
89 [include "../framework/master-footer.ezt"]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698