corrected container and other errors

This commit is contained in:
Josako
2024-06-28 14:40:13 +02:00
parent 7a1b51dd0c
commit 9187947f68
105 changed files with 16882 additions and 2279 deletions

View File

@@ -1,9 +1,9 @@
{% extends "base.html" %}
{% from "macros.html" import render_field %}
{% block title %}Update Document Language{% endblock %}
{% block title %}Update Document Version{% endblock %}
{% block content_title %}Update Document Language{% endblock %}
{% block content_description %}Update document language for {{ doc_details }}.{% endblock %}
{% block content_title %}Update Document Version{% endblock %}
{% block content_description %}Update document version for {{ doc_details }}.{% endblock %}
{% block content %}
<form method="post">
@@ -13,6 +13,6 @@
{% for field in form %}
{{ render_field(field, disabled_fields, exclude_fields) }}
{% endfor %}
<button type="submit" class="btn btn-primary">Update Document</button>
<button type="submit" class="btn btn-primary">Update Document Version</button>
</form>
{% endblock %}