0ba28d89 |
1 | {% if user.is_superuser %} |
2 | {% include 'registration/password_change_form_admin.html' %} |
3 | {% elif user.first_name == 'student' %} |
4 | {% include 'registration/password_change_form_student.html' %} |
5 | {% else %} |
6 | You do not have permission to change password! |
7 | {% endif %} |