{% extends 'tutor/base_tutor.html' %} {% load static %} {% block content %}
A portrait of {{ profile.name }}

{{ profile.name }} {% if profile.verification_set.first.verified %} {% endif %}

{{ profile.bio }}
{{ profile.location }}
{{ profile.gender }}

Tuition History

{% if work_history %} {% for work in work_history %}
{{ work.title }}
{% with assignee=work.assignee_set.first %}

{{ assignee.from_date|date:"M Y" }} - {{ assignee.to_date|date:"M Y" }}, {{ work.std_count }} student(s), {{ work.days }} days a week
{{ work.grade }} ({{ work.type }}), {{ work.subjects }}

{% endwith %}
Salary
{{ work.salary }}
{% endfor %} {% else %}

No history found.

{% endif %}
{% endblock content %}