diff --git a/cfp/templates/cfp/volunteer.html b/cfp/templates/cfp/volunteer_dashboard.html similarity index 100% rename from cfp/templates/cfp/volunteer.html rename to cfp/templates/cfp/volunteer_dashboard.html diff --git a/cfp/views.py b/cfp/views.py index 3c5eeab..1f46a48 100644 --- a/cfp/views.py +++ b/cfp/views.py @@ -121,7 +121,7 @@ def volunteer_mail_token(request): @volunteer_required def volunteer_dashboard(request, volunteer): - return render(request, 'cfp/volunteer.html', { + return render(request, 'cfp/volunteer_dashboard.html', { 'activities': Activity.objects.filter(site=request.conference.site), 'volunteer': volunteer, })