Commit 242c03348075fcdde99fc9b850c088238a0b4174
Committed by
Sergio Oliveira
1 parent
085f0730
Exists in
master
and in
79 other branches
Removing '/' from url_menu noosfero.py.erb
Showing
1 changed file
with
4 additions
and
4 deletions
Show diff stats
cookbooks/colab/templates/noosfero.py.erb
| ... | ... | @@ -22,12 +22,12 @@ url = colab_url_factory('noosfero') |
| 22 | 22 | |
| 23 | 23 | menu_urls = ( |
| 24 | 24 | url(display=_('Users'), viewname='noosfero', |
| 25 | - kwargs={'path': '/search/people'}, auth=False), | |
| 25 | + kwargs={'path': 'search/people'}, auth=False), | |
| 26 | 26 | url(display=_('Communities'), viewname='noosfero', |
| 27 | - kwargs={'path': '/search/communities'}, auth=False), | |
| 27 | + kwargs={'path': 'search/communities'}, auth=False), | |
| 28 | 28 | url(display=_('Profile'), viewname='noosfero', |
| 29 | - kwargs={'path': '/profile/~/'}, auth=True), | |
| 29 | + kwargs={'path': 'profile/~/'}, auth=True), | |
| 30 | 30 | url(display=_('Control Panel'), viewname='noosfero', |
| 31 | - kwargs={'path': '/myprofile/~/'}, auth=True), | |
| 31 | + kwargs={'path': 'myprofile/~/'}, auth=True), | |
| 32 | 32 | |
| 33 | 33 | ) | ... | ... |