Faculty Data Analysis

{% if departments %}

Enter Student Counts by Department

{% for department in departments %}
{% endfor %} {% endif %}
{% if error %}
{{ error }}
{% endif %} {% if graded_csv %}
Download Graded CSV
{% endif %} {% if plots %}

Visualizations with Insights

{% for plot_title, plot_html in plots.items() %}

{{ plot_html | safe }}
Insights for {{ plot_title }}

{{ gemini_insights[plot_title] }}

{% endfor %}
{% endif %} {% if department_tables %}

Faculty Data by Department

{% for department, table in department_tables.items() %}

{{ department }}

{% for col in table.columns %} {% endfor %} {% for row in table.rows %} {% for cell in row %} {% endfor %} {% endfor %}
{{ col }}
{{ cell }}
{% endfor %} {% endif %} {% if deficiency_table %}

Deficiency Comparison: Faculty vs Students

{{ deficiency_table | safe }}
{% endif %} {% if swot_results %}

SWOT Analysis Results

Strengths

    {% for strength in swot_results.strengths %}
  • {{ strength }}
  • {% endfor %}

Weaknesses

    {% for weakness in swot_results.weaknesses %}
  • {{ weakness }}
  • {% endfor %}

Opportunities

    {% for opportunity in swot_results.opportunities %}
  • {{ opportunity }}
  • {% endfor %}

Threats

    {% for threat in swot_results.threats %}
  • {{ threat }}
  • {% endfor %}
{% endif %}