Mercurial > public > src > rhodecode
comparison pylons_app/templates/changeset/changeset.html @ 388:558eb7c5028f v0.8.0
version bump to 0.8
hg app 0.8 new template.
Add yui flot and graph into summary page.
+ various tweeks and patches into look of application
author | Marcin Kuzminski <marcin@python-works.com> |
---|---|
date | Sat, 24 Jul 2010 02:17:48 +0200 |
parents | 40b409af53a5 |
children | 2a18192fbd1e |
comparison
equal
deleted
inserted
replaced
387:3581656180b7 | 388:558eb7c5028f |
---|---|
1 <%inherit file="/base/base.html"/> | 1 <%inherit file="/base/base.html"/> |
2 | 2 |
3 <%def name="title()"> | 3 <%def name="title()"> |
4 ${_('Changeset')} | 4 ${_('Changeset')} |
5 </%def> | 5 </%def> |
6 <%def name="breadcrumbs()"> | 6 |
7 <%def name="breadcrumbs_links()"> | |
7 ${h.link_to(u'Home',h.url('/'))} | 8 ${h.link_to(u'Home',h.url('/'))} |
8 / | 9 » |
9 ${h.link_to(c.repo_name,h.url('changeset_home',repo_name=c.repo_name))} | 10 ${h.link_to(c.repo_name,h.url('summary_home',repo_name=c.repo_name))} |
10 / | 11 » |
11 ${_('changeset')} | 12 ${_('Changeset')} - r${c.changeset.revision}:${c.changeset.raw_id} |
12 </%def> | 13 </%def> |
14 | |
13 <%def name="page_nav()"> | 15 <%def name="page_nav()"> |
14 ${self.menu('changelog')} | 16 ${self.menu('changelog')} |
15 </%def> | 17 </%def> |
16 <%def name="css()"> | 18 |
17 <link rel="stylesheet" href="/css/monoblue_custom.css" type="text/css" /> | |
18 <link rel="stylesheet" href="/css/diff.css" type="text/css" /> | |
19 </%def> | |
20 <%def name="main()"> | 19 <%def name="main()"> |
21 <h2 class="no-link no-border">${_('Changeset')} - r${c.changeset.revision}:${c.changeset.raw_id}</h2> | 20 <div class="box"> |
22 | 21 <!-- box / title --> |
22 <div class="title"> | |
23 ${self.breadcrumbs()} | |
24 </div> | |
25 <div class="table"> | |
23 <div id="changeset_content"> | 26 <div id="changeset_content"> |
24 <div class="container"> | 27 <div class="container"> |
25 <div class="left"> | 28 <div class="left"> |
26 <div class="date">${_('Date')}: ${c.changeset.date}</div> | 29 <div class="date">${_('Date')}: ${c.changeset.date}</div> |
27 <div class="author">${_('Author')}: ${c.changeset.author}</div> | 30 <div class="author">${_('Author')}: ${c.changeset.author}</div> |
82 ${_('No changes in this file')} | 85 ${_('No changes in this file')} |
83 %endif | 86 %endif |
84 </div> | 87 </div> |
85 </div> | 88 </div> |
86 %endif | 89 %endif |
87 %endfor | 90 %endfor |
88 | 91 </div> |
89 </%def> | 92 </div> |
93 | |
94 </%def> |