diff --git a/pylons_app/templates/admin/admin.html b/pylons_app/templates/admin/admin.html
--- a/pylons_app/templates/admin/admin.html
+++ b/pylons_app/templates/admin/admin.html
@@ -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()">
diff --git a/pylons_app/templates/admin/add.html b/pylons_app/templates/admin/repos/repo_add.html
rename from pylons_app/templates/admin/add.html
rename to pylons_app/templates/admin/repos/repo_add.html
--- a/pylons_app/templates/admin/add.html
+++ b/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()">
diff --git a/pylons_app/templates/admin/repos/repo_edit.html b/pylons_app/templates/admin/repos/repo_edit.html
--- a/pylons_app/templates/admin/repos/repo_edit.html
+++ b/pylons_app/templates/admin/repos/repo_edit.html
@@ -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'))}
diff --git a/pylons_app/templates/admin/repos/repos.html b/pylons_app/templates/admin/repos/repos.html
--- a/pylons_app/templates/admin/repos/repos.html
+++ b/pylons_app/templates/admin/repos/repos.html
@@ -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'))}
diff --git a/pylons_app/templates/admin/users/user_add.html b/pylons_app/templates/admin/users/user_add.html
--- a/pylons_app/templates/admin/users/user_add.html
+++ b/pylons_app/templates/admin/users/user_add.html
@@ -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'))}
diff --git a/pylons_app/templates/admin/users/user_edit.html b/pylons_app/templates/admin/users/user_edit.html
--- a/pylons_app/templates/admin/users/user_edit.html
+++ b/pylons_app/templates/admin/users/user_edit.html
@@ -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'))}
diff --git a/pylons_app/templates/admin/users/users.html b/pylons_app/templates/admin/users/users.html
--- a/pylons_app/templates/admin/users/users.html
+++ b/pylons_app/templates/admin/users/users.html
@@ -1,10 +1,8 @@
<%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'))}