{% extends "base.html" %} {% load bootstrap4 %} {% block title %}Section Creator{% endblock title %} {% block content %}

{% include "project_navbar.html" %}

Section Creator


{{ company.company_name }}
{% csrf_token %}
{% for field in missing_sections_form %} {{ field.label.hidden }} {{ field }} {% endfor %}


{% for section, docs, tag_form in section_list %}
{{ section.name_prefix.value}}{% if section.name_postfix %} - {{section.name_postfix.value}}{% endif %}
{% for doc_id, doc_pos, doc_url, doc_name, updated_at, conv_doc_pk, converted_path_date, converting, missing in docs %}
{{ doc_name }}{% if forloop.first %} (main){% endif %}{% if doc_url %}
last update {{updated_at}}
{% endif %}
{% csrf_token %}
{% if doc_url %} Original {% else %} No File {% endif %}
{% if doc_url %} Convert {% else %} No File {% endif %}
{% if conv_doc_pk %}
{{converted_path_date}}
{% else %} {% if converting %}in progr.{% else %}No File{% endif %} {% endif %}
{% if not forloop.first %} {% endif %}
{% endfor %}
{% csrf_token %}
{% for field in tag_form %}
{{ field.errors }} {{ field }}
{% endfor %}
{% if tag_form %} {% endif %}

{% endfor %}

{% endblock content %}