aboutsummaryrefslogtreecommitdiffstats
path: root/servo/templates/accounts/view_calendar.html
diff options
context:
space:
mode:
authorFilipp Lepalaan <filipp@mac.com>2015-11-09 15:35:26 +0200
committerFilipp Lepalaan <filipp@mac.com>2015-11-09 15:35:26 +0200
commit981855ad27c331a03dbfcec24bd6b49c30681c94 (patch)
treec2562266267cb17504334ac0e87df581f3c25b18 /servo/templates/accounts/view_calendar.html
parent96432a9a4ff849da6c3f450253198b83cf3fbde9 (diff)
downloadServo-981855ad27c331a03dbfcec24bd6b49c30681c94.tar.gz
Servo-981855ad27c331a03dbfcec24bd6b49c30681c94.tar.bz2
Servo-981855ad27c331a03dbfcec24bd6b49c30681c94.zip
Remove username from profile page URLs
Diffstat (limited to 'servo/templates/accounts/view_calendar.html')
-rwxr-xr-xservo/templates/accounts/view_calendar.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/servo/templates/accounts/view_calendar.html b/servo/templates/accounts/view_calendar.html
index 2b063e2..7eece46 100755
--- a/servo/templates/accounts/view_calendar.html
+++ b/servo/templates/accounts/view_calendar.html
@@ -15,9 +15,9 @@
{% block browse_block %}
<div class="btn-group pull-right">
- <a href="{% url 'calendars-view_calendar' username=request.user.username pk=calendar.pk view=view start_date=previous|date:'Y-m-d' %}" class="btn"><i class="icon-chevron-left"></i></a>
+ <a href="{% url 'calendars-view_calendar' pk=calendar.pk view=view start_date=previous|date:'Y-m-d' %}" class="btn"><i class="icon-chevron-left"></i></a>
<a href="{{ base_url }}" class="btn">{% trans "Today" %}</a>
- <a href="{% url 'calendars-view_calendar' username=request.user.username pk=calendar.pk view=view start_date=next|date:'Y-m-d' %}" class="btn"><i class="icon-chevron-right"></i></a>
+ <a href="{% url 'calendars-view_calendar' pk=calendar.pk view=view start_date=next|date:'Y-m-d' %}" class="btn"><i class="icon-chevron-right"></i></a>
</div>
{% endblock browse_block %}
</div>
@@ -61,6 +61,6 @@
{% endblock detail_view %}
{% block crumbs %}
- <li><a href="{% url 'calendars-list' username=request.user.username %}">{% trans "Calendars" %}</a> <span class="divider">/</span></li>
+ <li><a href="{% url 'calendars-list' %}">{% trans "Calendars" %}</a> <span class="divider">/</span></li>
<li class="active">{{ calendar.title }}</li>
{% endblock crumbs %}