comparison pylons_app/templates/admin/admin.html @ 362:558eb7c5028f rhodecode-0.0.0.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 19944fc4f872
children
comparison
equal deleted inserted replaced
361:3581656180b7 362:558eb7c5028f
2 <%inherit file="/base/base.html"/> 2 <%inherit file="/base/base.html"/>
3 3
4 <%def name="title()"> 4 <%def name="title()">
5 ${_('Administration')} 5 ${_('Administration')}
6 </%def> 6 </%def>
7 <%def name="breadcrumbs()"> 7
8 ${h.link_to(u'Admin',h.url('admin_home'))} 8 <%def name="breadcrumbs_links()">
9 ${_('Admin dashboard - journal')}
9 </%def> 10 </%def>
11
10 <%def name="page_nav()"> 12 <%def name="page_nav()">
11 ${self.menu('admin')} 13 ${self.menu('admin')}
12 ${self.submenu('')}
13 </%def> 14 </%def>
14 <%def name="main()"> 15 <%def name="main()">
15 <div> 16 <div class="box">
16 <h2>Welcome ${c.hg_app_user.username}</h2> 17 <!-- box / title -->
17 <div id="user_log"> 18 <div class="title">
18 ${c.log_data} 19 ${self.breadcrumbs()}
19 </div> 20 </div>
20 </div> 21 <!-- end box / title -->
22 <div class="table">
23 <div id="user_log">
24 ${c.log_data}
25 </div>
26 </div>
27 </div>
21 </%def> 28 </%def>