summaryrefslogtreecommitdiff
path: root/statistics_app
diff options
context:
space:
mode:
authorAkshen2018-08-03 16:48:49 +0530
committerAkshen2018-08-03 16:54:41 +0530
commit6ce131f989d413739ae1ff88f1a930f46ab442f0 (patch)
tree10a4030d3f6688c6223170a420d009a7ed965eb7 /statistics_app
parent802ab05a0cd4fbf197b014664d5bb70907862aef (diff)
downloadworkshop_booking-6ce131f989d413739ae1ff88f1a930f46ab442f0.tar.gz
workshop_booking-6ce131f989d413739ae1ff88f1a930f46ab442f0.tar.bz2
workshop_booking-6ce131f989d413739ae1ff88f1a930f46ab442f0.zip
Allow to view coordinator profile from profile statistics
Diffstat (limited to 'statistics_app')
-rw-r--r--statistics_app/templates/statistics_app/profile_stats.html3
1 files changed, 2 insertions, 1 deletions
diff --git a/statistics_app/templates/statistics_app/profile_stats.html b/statistics_app/templates/statistics_app/profile_stats.html
index 7c0c2b5..2a01476 100644
--- a/statistics_app/templates/statistics_app/profile_stats.html
+++ b/statistics_app/templates/statistics_app/profile_stats.html
@@ -94,7 +94,8 @@
{% if profile_data.count > 0 %}
<tr>
<td>{{ forloop.counter }}</td>
- <td>{{ profile_data.profile.user.first_name}} {{ profile_data.profile.user.last_name}}</td>
+ <td><a href="{{ URL_ROOT }}/view_comment_profile/{{ profile_data.profile.user.id }}">
+ {{ profile_data.profile.user.get_full_name }}</a></td>
<td>{{ profile_data.profile.institute}}</td>
<td>{{ profile_data.profile.phone_number}}</td>
<td>{{ profile_data.profile.user.date_joined | date}}</td>