27 lines
648 B
HTML
27 lines
648 B
HTML
{% extends "base.html" %}
|
|
|
|
{% load bootstrap3 %}
|
|
|
|
{% block title %}Set telechat date for {{ doc.name }}{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>Set telechat date<br><small>{{ doc.name }}</small></h1>
|
|
|
|
{% bootstrap_messages %}
|
|
|
|
{% for warning in warnings %}
|
|
<div class="alert alert-warning">{{ warning }}</div>
|
|
{% endfor %}
|
|
|
|
<form role="form" method="post">
|
|
{% csrf_token %}
|
|
{% bootstrap_form form %}
|
|
|
|
{% buttons %}
|
|
<button type="submit" class="btn btn-primary">Save</button>
|
|
<a class="btn btn-default pull-right" href="{% url "doc_view" name=doc.name %}">Back</a>
|
|
{% endbuttons %}
|
|
</form>
|
|
|
|
{% endblock %}
|