Improvements to Document Interface and correcting embedding workers
This commit is contained in:
18
eveai_app/templates/document/edit_document.html
Normal file
18
eveai_app/templates/document/edit_document.html
Normal file
@@ -0,0 +1,18 @@
|
||||
{% extends "base.html" %}
|
||||
{% from "macros.html" import render_field %}
|
||||
{% block title %}Update Document{% endblock %}
|
||||
|
||||
{% block content_title %}Update Document{% endblock %}
|
||||
{% block content_description %}Update document details.{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<form method="post">
|
||||
{{ form.hidden_tag() }}
|
||||
{% set disabled_fields = [] %}
|
||||
{% set exclude_fields = [] %}
|
||||
{% for field in form %}
|
||||
{{ render_field(field, disabled_fields, exclude_fields) }}
|
||||
{% endfor %}
|
||||
<button type="submit" class="btn btn-primary">Update Document</button>
|
||||
</form>
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user