restructures templates

This commit is contained in:
Michael Beck
2025-02-06 03:35:26 +01:00
parent 63243dcdb9
commit c6d7392a87
4 changed files with 35 additions and 25 deletions

View File

@@ -1,4 +1,5 @@
{% include "header.html" %}
{% extends 'base.html' %}
{% block content %}
<section id="scrapingFormContainer" class="container-fluid d-flex justify-content-center">
<div class="container-md my-5 mx-2 shadow-lg p-4 ">
<h2>Config</h2>
@@ -26,7 +27,7 @@
<section id="resultsContainer" class="container-fluid d-flex justify-content-center">
<div class="container-md my-5 mx-2 shadow-lg p-4" style="height: 500px;">
<div class="row">
<div class="col-7">
<div class="col-8">
<h2>Logs</h2>
<pre id="logs" class="pre-scrollable" style="height: 350px; overflow:scroll; "><code></code></pre>
<div class="btn-group btn-group-sm">
@@ -41,9 +42,7 @@
</div>
</div>
</section>
{% block scripts %}
{{ bootstrap.load_js() }}
<link rel="stylesheet" href="{{ url_for('.static', filename='style.css') }}">
<script src="{{url_for('.static', filename='app.js')}}"></script>
{% endblock %}
{% include "footer.html" %}
{% block scripts %}
<script src="{{url_for('static', filename='app.js')}}"></script>
{% endblock %}
{% endblock content %}