2016-07-05 21:43:18 +00:00
|
|
|
{% extends 'base.html' %}
|
|
|
|
{% load bootstrap3 %}
|
|
|
|
|
|
|
|
{% block content %}
|
2017-01-20 15:18:10 +00:00
|
|
|
<h3>Create {{ camp.title }} Village</h3>
|
2016-07-05 21:43:18 +00:00
|
|
|
<form method="post">
|
|
|
|
{% csrf_token %}
|
|
|
|
|
|
|
|
{% bootstrap_form form %}
|
|
|
|
|
|
|
|
<hr />
|
|
|
|
|
|
|
|
<button class="btn btn-primary pull-right" type="submit">Save</button>
|
|
|
|
</form>
|
|
|
|
|
2016-12-28 23:15:13 +00:00
|
|
|
{% endblock %}
|