diff --git a/RIGS/templates/event_detail.html b/RIGS/templates/event_detail.html
index 96296546..e70050da 100644
--- a/RIGS/templates/event_detail.html
+++ b/RIGS/templates/event_detail.html
@@ -1,7 +1,6 @@
{% extends request.is_ajax|yesno:"base_ajax.html,base_rigs.html" %}
{% load markdown_tags %}
-{% load button from filters %}
{% load static %}
{% block content %}
@@ -57,43 +56,9 @@
- {% if event.can_check_in %}
-
{% include 'partials/event_detail_buttons.html' %}
diff --git a/RIGS/templates/partials/crew_list.html b/RIGS/templates/partials/crew_list.html
new file mode 100644
index 00000000..3d028d87
--- /dev/null
+++ b/RIGS/templates/partials/crew_list.html
@@ -0,0 +1,48 @@
+{% load button from filters %}
+
+{% if event.can_check_in %}
+
+
+
+
+
+
+
+ | Name |
+ Vehicle |
+ Start Time |
+ Role |
+ End Time |
+ {% if request.user.pk is event.mic.pk %} Add{% endif %} |
+
+
+
+ {% for crew in event.crew.all %}
+
+ | {{crew.person}} |
+ {{crew.vehicle|default:"None"}} |
+ {{crew.time}} |
+ {{crew.role}} |
+ {% if crew.end_time %}
+ {{crew.end_time}}
+ {% else %}
+ {% endif %}
+ |
+ {% if crew.end_time %}{% if crew.person.pk == request.user.pk or event.mic.pk ==
+ request.user.pk %}{% button 'edit' 'edit_checkin' crew.pk clazz='btn-sm modal-href' %}{%
+ endif %}{% endif %} |
+
+ {% empty %}
+
+ | Apparently this event happened by magic... |
+
+ {% endfor %}
+
+
+
+
+
+{% endif %}