{% extends "base.html" %} {% load compress %} {% block title %}Orientations{% endblock %} {% block main %}
{% if request.GET.q %} {% if extra_users %}
{{ extra_users }}
{% endif %} {% for user in users %} {% include "event/_orientation_box.html" %} {% empty %}

No users found matching that criterion

{% endfor %} {% if extra_users %}
{{ extra_users }}
{% endif %} {% else %}
{% if prev_occ %} « {{ prev_occ.start|date:"M/d/Y" }} {% endif %} {% if next_occ %} {{ next_occ.start|date:"M/d/Y" }} » {% endif %}
{% for eventoccurrence in eventoccurrences %}

{{ eventoccurrence.event.name }}

{{ eventoccurrence.start|date:"M j, Y @ P" }}

{% for rsvp in eventoccurrence.get_rsvps %} {% include "event/_orientation_box.html" with user=rsvp.user %} {% empty %}

:D No one signed up for this orientation

{% endfor %} {% empty %}

No Orientations at This Date

{% endfor %} {% endif %}

Search All Users

{% endblock %} {% block extrajs %} {% compress js %} {% endcompress %} {% endblock %}