diff --git a/RIGS/templates/subhire_detail.html b/RIGS/templates/subhire_detail.html
index a4309454..29bc78c3 100644
--- a/RIGS/templates/subhire_detail.html
+++ b/RIGS/templates/subhire_detail.html
@@ -1,14 +1,60 @@
{% extends request.is_ajax|yesno:"base_ajax.html,base_rigs.html" %}
{% load markdown_tags %}
+{% load button from filters %}
{% block content %}
+
+ {% button 'edit' 'subhire_update' object.pk %}
+
{% include 'partials/contact_details.html' %}
- {% include 'partials/event_details.html' %}
+
+
+
+
+ - Name
+ - {{ object.name }}
+ - Event Starts
+ - {{ object.start_date|date:"D d M Y" }} {{ object.start_time|date:"H:i" }}
+
+ - Event Ends
+ - {{ object.end_date|date:"D d M Y" }} {{ object.end_time|date:"H:i" }}
+
+ - Status
+ - {{ object.get_status_display }}
+
+ - PO
+ - {{ object.po }}
+
+
+
+
+
+
+
+
+
+ - Description
+ - {{ object.description }}
+ - Insurance Value
+ - £{{ object.insurance_value }}
+
+
+
+
+
+
+
+
+ {% for event in object.events.all %}
+ {{event}}
+ {%endfor%}
+
+
{% if not request.is_ajax and perms.RIGS.view_event %}