Changeset - fec7d0707e72
[Not reviewed]
default
1 6 1
Marcin Kuzminski - 15 years ago 2010-05-21 20:27:28
marcin@python-works.com
fixed html in admin templates. Litle refactors
7 files changed with 4 insertions and 15 deletions:
0 comments (0 inline, 0 general)
pylons_app/templates/admin/admin.html
Show inline comments
 
@@ -15,9 +15,9 @@
 
    ${_('Repository managment')}
 
</%def>
 
<%def name="breadcrumbs()">
 
	${h.link_to(u'Home',h.url('/'))}
 
	${h.link_to(u'Admin',h.url('admin_home'))}
 
	 / 
 
	${h.link_to(u'Admin',h.url('admin_home'))}
 
	 
 
</%def>
 
<%def name="page_nav()">
 
<ul class="page-nav">
pylons_app/templates/admin/repos/repo_add.html
Show inline comments
 
file renamed from pylons_app/templates/admin/add.html to pylons_app/templates/admin/repos/repo_add.html
 
@@ -6,9 +6,8 @@
 
</%def>
 

	
 
<%def name="breadcrumbs()">
 
	${h.link_to(u'Home',h.url('/'))}
 
	${h.link_to(u'Admin',h.url('admin_home'))}
 
	 / 
 
	${h.link_to(u'Admin',h.url('admin_home'))}
 
</%def>
 

	
 
<%def name="page_nav()">
pylons_app/templates/admin/repos/repo_edit.html
Show inline comments
 
@@ -3,8 +3,6 @@
 
    ${_('Repository managment')}
 
</%def>
 
<%def name="breadcrumbs()">
 
    ${h.link_to(u'Home',h.url('/'))}
 
    / 
 
    ${h.link_to(u'Admin',h.url('admin_home'))}
 
    /
 
    ${h.link_to(u'Repos managment',h.url('repos'))}
pylons_app/templates/admin/repos/repos.html
Show inline comments
 
@@ -3,8 +3,6 @@
 
    ${_('Repository managment')}
 
</%def>
 
<%def name="breadcrumbs()">
 
    ${h.link_to(u'Home',h.url('/'))}
 
    / 
 
    ${h.link_to(u'Admin',h.url('admin_home'))}
 
    /
 
    ${h.link_to(u'Repos managment',h.url('repos'))}
pylons_app/templates/admin/users/user_add.html
Show inline comments
 
@@ -3,8 +3,6 @@
 
    ${_('User')} - ${_('add new')}
 
</%def>
 
<%def name="breadcrumbs()">
 
    ${h.link_to(u'Home',h.url('/'))}
 
    / 
 
    ${h.link_to(u'Admin',h.url('admin_home'))}
 
    /
 
    ${h.link_to(u'Users',h.url('users'))}
pylons_app/templates/admin/users/user_edit.html
Show inline comments
 
@@ -3,8 +3,6 @@
 
    ${_('User')} - ${c.user.username}
 
</%def>
 
<%def name="breadcrumbs()">
 
    ${h.link_to(u'Home',h.url('/'))}
 
    / 
 
    ${h.link_to(u'Admin',h.url('admin_home'))}
 
    /
 
    ${h.link_to(u'Users',h.url('users'))}
pylons_app/templates/admin/users/users.html
Show inline comments
 
<%inherit file="/base/base.html"/>
 
<%def name="title()">
 
    ${_('Repository managment')}
 
    ${_('Users managment')}
 
</%def>
 
<%def name="breadcrumbs()">
 
    ${h.link_to(u'Home',h.url('/'))}
 
    / 
 
    ${h.link_to(u'Admin',h.url('admin_home'))}
 
    /
 
    ${h.link_to(u'Users managment',h.url('users'))}
0 comments (0 inline, 0 general)