Skip to content

Commit

Permalink
Fix 2 broken pages caused by Django 1.5 url syntax
Browse files Browse the repository at this point in the history
The "account/settings/location/" was broken, so it's fixed now in the
templates.
  • Loading branch information
ArcTanSusan committed Aug 17, 2014
1 parent f601dfe commit 7cbc89c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mysite/account/templates/account/settings.html
Expand Up @@ -62,12 +62,12 @@ <h3>Settings</h3>
</a>
</li>
<li id='link-set_location'>
<a href='{% url account.views.set_location %}'>
<a href='{% url "account.views.set_location" %}'>
Location
</a>
</li>
<li id='link-edit_contact_info'>
<a href='{% url account.views.edit_contact_info %}'>
<a href='{% url "account.views.edit_contact_info" %}'>
Email
<li id='link-invite_someone'>
<a href='{% url "account.views.invite_someone" %}'>
Expand Down

0 comments on commit 7cbc89c

Please sign in to comment.