diff --git a/RIGS/templates/partials/event_details.html b/RIGS/templates/partials/event_details.html
index 2566e74a..1b5a4e7d 100644
--- a/RIGS/templates/partials/event_details.html
+++ b/RIGS/templates/partials/event_details.html
@@ -15,7 +15,7 @@
{% if object.venue %}
@@ -22,7 +23,7 @@
{{ object.address|linebreaksbr }}
Notes
-
{{ object.notes|linebreaksbr }}
+
{{ object.notes|markdown }}
{% if object.three_phase_available is not None %}
Three Phase Available
diff --git a/templates/generic_form.html b/templates/generic_form.html
index 76321ae6..7082e2b9 100644
--- a/templates/generic_form.html
+++ b/templates/generic_form.html
@@ -1,6 +1,27 @@
{% extends override|default:"base_rigs.html" %}
{% load button from filters %}
{% load widget_tweaks %}
+{% load static %}
+
+{% block css %}
+ {{ block.super }}
+
+{% endblock %}
+
+{% block preload_js %}
+ {{ block.super }}
+
+
+{% endblock %}
+
+{% block js %}
+ {{ block.super }}
+
+{% endblock %}
{% block content %}
@@ -43,7 +64,7 @@
- {% render_field form.notes class+="form-control" placeholder=form.notes.label %}
+ {% render_field form.notes class+="form-control md-enabled" placeholder=form.notes.label %}
{% if form.three_phase_available is not None %}