17 lines
287 B
HTML
17 lines
287 B
HTML
{% extends 'base.html' %}
|
|
{% load bootstrap3 %}
|
|
|
|
{% block content %}
|
|
<h3>Create {{ camp.title }} Village</h3>
|
|
<form method="post">
|
|
{% csrf_token %}
|
|
|
|
{% bootstrap_form form %}
|
|
|
|
<hr />
|
|
|
|
<button class="btn btn-primary pull-right" type="submit">Save</button>
|
|
</form>
|
|
|
|
{% endblock %}
|