{% extends "txstate_base.html" %} {% block content %}

{{ profile.user.first_name }} {{ profile.user.last_name }}

{% if profile.title %}

{{ profile.title }}

{% endif %} {% if profile.education %}

Education

{{ profile.education|safe }} {% endif %} {% if profile.research_interests %}

Research Interests

{{ profile.research_interests|safe }}

{% endif %} {% if profile.photo %} {% endif %} {% if courses.current %}

Current Classes

{% for course in courses.current %} {% endfor %}
Course Section Meets From Until Location
{{ course.course }} {{ course.section }} {{ course.meeting_days }} {{ course.begin_time }} {{ course.end_time }} {{ course.location }}
{% endif %} {% if courses.previous %}

Previous Classes

{% for course in courses.previous %} {% endfor %}
Course Section Meets From Until Location
{{ course.course }} {{ course.section }} {{ course.meeting_days }} {{ course.begin_time }} {{ course.end_time }} {{ course.location }}
{% endif %} {% if profile.office_location_sm %}

Office

San Marcos

Location: {{ profile.office_location_sm }}

{% endif %} {% if profile.office_phone_sm %}

Phone: {{ profile.office_phone_sm }}

{% endif %} {% if profile.office_location_rr %}

Round Rock

Location: {{ profile.office_location_rr }}

{% endif %} {% if profile.office_phone_rr %}

Phone: {{ profile.office_phone_rr }}

{% endif %}

Email

{{ profile.user.email }}

{% if profile.webpage %}

Webpage

{{ profile.webpage }}

{% endif %} {% ifequal user profile.user %} Edit {% endifequal %} {% endblock %}