base.html 627 B

1234567891011121314151617
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <title>{% block title %}Technical Report Generator{% endblock %}</title>
  5. <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet">
  6. <!-- This block will render the necessary JS/CSS for form widgets like TinyMCE -->
  7. {% block form_media %}
  8. {{ form.media }}
  9. {% endblock %}
  10. </head>
  11. <body>
  12. <div class="container mt-4">
  13. <h1 class="mb-4"><a href="{% url 'document_list' %}" class="text-dark text-decoration-none">Document Generator</a></h1>
  14. {% block content %}{% endblock %}
  15. </div>
  16. </body>
  17. </html>