Skip to content

Commit

Permalink
Merge pull request #1365 from onceuponatimeforever/Fix-broken-account…
Browse files Browse the repository at this point in the history
…-pages

Fix any and all pages caused by Django 1.5 url syntax
  • Loading branch information
ehashman committed Aug 17, 2014
2 parents 5acccb6 + 7fd9f81 commit b39bd28
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions mysite/account/templates/account/settings.html
Original file line number Diff line number Diff line change
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
2 changes: 1 addition & 1 deletion mysite/account/templates/authopenid/signin.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
{% endcomment %}
{% load i18n %}

<form id="openid_form" name="openid_form" action="{% url user_signin %}" method="post">{% csrf_token %}
<form id="openid_form" name="openid_form" action="{% url "user_signin" %}" method="post">{% csrf_token %}
<input type="hidden" name="action" value="verify" />
<input type="hidden" name="next" value="{{ next }}" />
<fieldset>
Expand Down
2 changes: 1 addition & 1 deletion mysite/base/templates/base/guide.html
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ <h3>How can I bring more contributors to my project?</h3>
<div id="portfolio_editor" class="tab">
<p>You can start by letting new contributors know about your project.</p>
<ul class="raquo_bullets fairly-big">
<li><a href='{% url mysite.profile.views.portfolio_editor %}'>Add a project</a> and describe your involvement.</li>
<li><a href='{% url "mysite.profile.views.portfolio_editor" %}'>Add a project</a> and describe your involvement.</li>
<li>Once your project has been added you can proceed towards adding its bug tracker.
<span class="normal-size"><a href="/wiki/Bug_trackers">(instructions)</a>
</span>
Expand Down

0 comments on commit b39bd28

Please sign in to comment.