{% extends 'pasapp/templates/base_template.html' %} {% block title %}{{profileUser.first_name}} {{profileUser.last_name}}{% endblock %} {% block imports %} {% load static %} {% endblock %} {% block onload %} updateForm() {% endblock %} {% block content %} {% load custom_filters %} {% load html_components %}

{{profileUser.first_name}} {{profileUser.last_name}}

{% if profileUser|is_professor %}
Professor
{% else %}
Student
{% endif %}

Email: {{profileUser.email}}

{% if profileUser|is_student %} {% tagbox_categorized userTags|academic id='tagBox-fixed' %}
{% endif %} {% if user.id == profileUser.id %}
{% csrf_token %} {% if user|is_student %} {% tags_dropdown tags|academic:False %}
{% tagbox_categorized userTags|academic:False True %} {% else %} {% tags_dropdown tags %}
{% tagbox_categorized userTags True %} {% endif %}
{% elif profileUser|is_student %} {% tagbox_categorized userTags|academic:False %} {% else %} {% tagbox_categorized userTags %} {% endif %} {% endblock %}