diff --git a/players/templates/players/edit.html b/players/templates/players/edit.html deleted file mode 100644 index 7643e8b..0000000 --- a/players/templates/players/edit.html +++ /dev/null @@ -1,9 +0,0 @@ -{% extends 'base.html' %}} - -{% block content %} -
- {% csrf_token %} - {{ form }} - -
-{% endblock %} \ No newline at end of file diff --git a/templates/edit.html b/templates/edit.html new file mode 100644 index 0000000..7b5ea60 --- /dev/null +++ b/templates/edit.html @@ -0,0 +1,9 @@ +{% extends 'base.html' %} +{% load crispy_forms_tags %} +{% block content %} +
+ {% csrf_token %} + {{ form|crispy }} + +
+{% endblock %} \ No newline at end of file diff --git a/venues/templates/venues/edit.html b/venues/templates/venues/edit.html deleted file mode 100644 index 7eacdd6..0000000 --- a/venues/templates/venues/edit.html +++ /dev/null @@ -1,9 +0,0 @@ -{% extends 'base.html' %}} - -{% block content %} -
- {% csrf_token %} - {{ form }} - -
-{% endblock %} \ No newline at end of file