This commit is contained in:
root
2025-07-19 16:50:53 +02:00
parent e8502779f0
commit dc6efef922
3 changed files with 26 additions and 12 deletions

View File

@@ -20,7 +20,12 @@
</div>
<button type="submit" class="btn btn-primary">Utwórz</button>
</form>
{% if flash_message %}<div class="alert alert-success mt-3">{{ flash_message }}</div>{% endif %}
{% if flash_message %}
<div class="alert alert-success">{{ flash_message }}</div>
{% endif %}
<p class="mt-3">Twój IP: {{ client_ip }} | UUID: {{ client_uuid }} | Data: {{ now }}</p>
</div>
</div>

View File

@@ -10,7 +10,7 @@
<h6>{{ graph.title }}</h6>
<img src="/static/graphs/{{ graph.file }}" alt="{{ graph.title }}" class="img-fluid graph">
{% endfor %}
<p class="mt-3">Aktualny czas: {{ now }}</p>
<p class="mt-3">Aktualny czas: {{ now_str }}</p>
</div>
</div>
{% endblock %}