23 lines
413 B
HTML
23 lines
413 B
HTML
{% extends "interface/project_base.html" %}
|
|
|
|
{% block page %}
|
|
<style>
|
|
TEXTAREA {
|
|
height: 200px;
|
|
}
|
|
FORM.vertical {
|
|
max-width: 90%;
|
|
}
|
|
</style>
|
|
<div>
|
|
<h3>{{ title }}</h3>
|
|
<p>{{ instructions }}</p>
|
|
<form class="vertical" method="POST">
|
|
{% csrf_token %}
|
|
{{ form }}
|
|
<div class="form-actions">
|
|
<button>Save</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
{% endblock %} |