{% extends 'home.html' %} {% load static i18n %} {% load widget_tweaks %} {% load django_bootstrap_breadcrumbs permission_tags%} {% block breadcrumbs %} {{ block.super }} {% breadcrumb 'Profile' 'users:profile' %} {% endblock %} {% block content %} {% if messages %} {% for message in messages %}
{{ message }}
{% trans "User role" %}: | {% if user.type_profile == 1 %}{% trans "Teacher" %} | {% else %}{% trans "Student" %} | {% endif %}
{% trans "CPF" %}: | {% if user.cpf %}{{user.cpf}} | {% else %}{% trans "doesn't possess CPF" %} | {% endif %}
{% trans "Phone Number" %}: | {% if user.phone %}{{user.phone}} | {% else %}{% trans "doesn't possess Phone" %} | {% endif %}
{% trans "Gender" %}: | {{user.gender}} | |
{% trans "Birth Date" %}: | {{user.birth_date}} | |
{% trans "State and City" %}: | {{user.state}} - {{user.city}} | |
{% trans "Title" %}: | {{user.titration}} | |
{% trans "Year" %}: | {{user.year_titration}} | |
{% trans "Institution" %}: | {% if user.institution %}{{user.institution}} | {% else %}{% trans "Didn't inform institution" %} | {% endif %}
{% trans "Curriculum" %}: | {% if user.curriculum %}link | {% else %}{% trans "Didn't upload any curriculum" %} | {% endif %}