{% extends "tx_highered/detail_base.html" %}
{% load glossary %}
{% load layout_helpers humanize instachart %}
{% load static from staticfiles %}
{% block head_title %}{{ object.name }}{% endblock %}
{% block page_title %}{{ object.name }}{% endblock %}
{% block body_base %}{% load_glossary "Higher Ed" %}{{ block.super }}{% endblock %}
{% block breadcrumb_items %}
{% if object.system %}
{% endif %}
{% if object.system %}
/
{% endif %}
{{ object.name }}
{% endblock %}
{% block page_top %}
{% if institution.sentence_institution_type %}
{% gloss institution.sentence_institution_type.title %}
{% endif %}
{% if institution.enrollment_fte %}
{# WISHLIST show how this number was derived and what it means (FTE vs total) #}
{{ institution.enrollment_fte|intcomma }} students
{% endif %}
{% include "tx_highered/includes/sentences.html" %}
{% endblock %}
{% block rail %}
{% render_model object "quick-stats" %}
{% if object.location %}
{% include "tx_highered/includes/map_static_mapbox.html" with w=229 h=143 %}
{% endif %}
{% endblock rail %}
{% block main %}
{% if show_video %}{% if object.pk == 11 or object.pk == 27 %}{# 11 == TAMU, 27 == UT Austin #}
{% include "tx_highered/includes/sponsor_message.html" %}
{% endif %}{% endif %}
Admissions
Number of students who applied, were admitted and enrolled
{% if object.admission_buckets.years|length %}
{% with object_list=object.get_admissions %}
{% include "instachart/simplechart/admissions.html" %}
{% endwith %}
|
{% for year in object.admission_buckets.years %}{{ year }} | {% endfor %}
{% gloss "Applicants" %} |
{% for a in object.admission_buckets.applicants.values %}{{ a|intcomma }} | {% endfor %}
{% gloss "Admitted" %} (% of Applicants) |
{% for a in object.admission_buckets.admitted.values %}{{ a.0|intcomma }} ({{ a.1 }}%) | {% endfor %}
{% gloss "Enrolled" %} (% of Admitted) |
{% for a in object.admission_buckets.enrolled.values %}{{ a.0|intcomma }} ({{ a.1 }}%) | {% endfor %}
Applicants, admitted and enrolled students by year
{% else %}
{% include "tx_highered/includes/no_data.html" %}
{% endif %}
Test Scores
Average {% gloss "SAT" %} scores by section for enrolling students (writing section not introduced until 2006 and still not reported by some institutions)
{% if object.testscores.all.exists %}
{% instachart object.testscores.all "testscores" %}
|
{% for year in object.sat_score_buckets.years %}{{ year }} | {% endfor %}
Critical Reading |
{% for a in object.sat_score_buckets.verbal_range.values %}{{ a }} | {% endfor %}
Math |
{% for a in object.sat_score_buckets.math_range.values %}{{ a }} | {% endfor %}
Writing |
{% for a in object.sat_score_buckets.writing_range.values %}{{ a }} | {% endfor %}
Critical reading, math and writing SAT scores of the
25th–75th percentile by year
(writing section not introduced until 2006 and still not reported by some institutions)
{% else %}
{% include "tx_highered/includes/no_data.html" %}
{% endif %}
{% with b=object.enrollment_buckets %}
Enrollment
{# FIXME this caption is wrong now that the data sources are combined #}
{% if b.data_source == "IPEDS" %}
Number of full-time equivalent students enrolled
{% else %}
Number of students enrolled
{% endif %}
|
{% for year in b.years %}{{ year }} | {% endfor %}
{% if b.total %}
Total |
{% for a in b.total.values %}{{ a|intcomma }} | {% endfor %}
{% endif %}
{% if b.fulltime_equivalent %}
Full-Time Equivalent (FTE) |
{% for a in b.fulltime_equivalent.values %}{{ a|intcomma }} | {% endfor %}
{% endif %}
{% if b.fulltime %}
Full-Time |
{% for a in b.fulltime.values %}{{ a|default:""|intcomma }} | {% endfor %}
{% endif %}
{% if b.parttime %}
Part-Time |
{% for a in b.parttime.values %}{{ a|default:""|intcomma }} | {% endfor %}
{% endif %}
{% endwith %}
{% with b=object.demographics_buckets %}
Demographics
Percent of student body by ethnicity
{% if b.data_source %}
Source: {{ b.data_source }}
{% endif %}
(Reporting criteria changed
over reporting period. Specifically, prior to 2011, Pacific Islander
was bundled with Asian; Multiracial was introduced in 2010; and
Unknown was introduced in 2010.)
{% if object.enrollment.all.exists %}
|
{% for year in b.years %}{{ year }} | {% endfor %}
White |
{% for a in b.total_percent_white.values %}{% if a %}{{ a }}%{% else %}*{% endif %} | {% endfor %}
Black |
{% for a in b.total_percent_black.values %}{% if a %}{{ a }}%{% else %}*{% endif %} | {% endfor %}
Hispanic |
{% for a in b.total_percent_hispanic.values %}{% if a %}{{ a }}%{% else %}*{% endif %} | {% endfor %}
Asian |
{% for a in b.total_percent_asian.values %}{% if a %}{{ a }}%{% else %}*{% endif %} | {% endfor %}
{% if b.pacific_islander_percent %}
{% gloss "Pacific Islander" %} |
{% for a in b.pacific_islander_percent.values %}{% if a %}{{ a }}%{% else %}*{% endif %} | {% endfor %}
{% endif %}
{% gloss "Native" %} |
{% for a in b.total_percent_native.values %}{% if a %}{{ a }}%{% else %}*{% endif %} | {% endfor %}
{% if b.multiracial_percent %}
{% gloss "Multiracial" %} |
{% for a in b.multiracial_percent.values %}{% if a %}{{ a }}%{% else %}*{% endif %} | {% endfor %}
{% endif %}
{% if b.international_percent %}
{% gloss "International" %} |
{% for a in b.international_percent.values %}{% if a %}{{ a }}%{% else %}*{% endif %} | {% endfor %}
{% endif %}
Unknown |
{% for a in b.total_percent_unknown.values %}{% if a %}{{ a }}%{% else %}*{% endif %} | {% endfor %}
Student body breakdown by ethnicity and total enrollment
{% else %}
{% include "tx_highered/includes/no_data.html" %}
{% endif %}
{% endwith %}
Price Trends
Average total cost for {% gloss "in-state" %} and {% gloss "out-of-state" %} students by year
Source: IPEDS
{% if object.pricetrends.all.exists %}
{% instachart object.pricetrends.all "pricetrends" %}
|
{% for year in object.tuition_buckets.years %}{{ year }} | {% endfor %}
{% gloss "In-State" %} Tuition |
{% for a in object.tuition_buckets.in_state.values %}
{% if a %}
${{ a|intcomma }}
{% else %}
N/A
{% endif %}
|
{% endfor %}
{% gloss "Out-Of-State" %} Tuition |
{% for a in object.tuition_buckets.out_of_state.values %}
{% if a %}
${{ a|intcomma }}
{% else %}
N/A
{% endif %}
|
{% endfor %}
Books & Supplies |
{% for a in object.tuition_buckets.books_and_supplies.values %}
{% if a %}
${{ a|intcomma }}
{% else %}
N/A
{% endif %}
|
{% endfor %}
Room & Board |
{% for a in object.tuition_buckets.room_and_board_on_campus.values %}
{% if a %}
${{ a|intcomma }}
{% else %}
N/A
{% endif %}
|
{% endfor %}
Total costs for in-state and out-of-state students by year
Total Costs
This chart can be changed to show out-of-state costs as well.
{% if object.is_private %}
Tuition and Fees for students by year
{% else %}
Tuition and Fees for in-state and out-of-state students by year
{% endif %}
{% else %}
{% include "tx_highered/includes/no_data.html" %}
{% endif %}
{% with b=object.graduationrates_buckets %}
Graduation Rates
Percent of {% gloss "first-time" %}, full-time students who graduated in four, five or six years
{% if b.data_source %}
Source: {{ b.data_source }}
{% endif %}
{% if b.years|length %}
{% with object_list=object.get_graduation_rates %}
{% include "instachart/simplechart/gradrates.html" %}
{% endwith %}
|
{% for year in b.years %}{{ year }} | {% endfor %}
4-Year |
{% for a in b.bachelor_4yr.values %}{% if a %}{{ a }}%{% else %}N/A{% endif %} | {% endfor %}
5-Year |
{% for a in b.bachelor_5yr.values %}{% if a %}{{ a }}%{% else %}N/A{% endif %} | {% endfor %}
6-Year |
{% for a in b.bachelor_6yr.values %}{% if a %}{{ a }}%{% else %}N/A{% endif %} | {% endfor %}
Percent of {% gloss "first-time" %}, full-time students who graduated in four, five or six years
{% else %}
{% include "tx_highered/includes/no_data.html" %}
{% endif %}
{% endwith %}
{% endblock %}
{% block attribution %}
{% include "tx_highered/includes/attribution.html" %}
{% endblock %}
{% block extra_script %}{{ block.super }}
{#
{% endblock %}