TiledViz
Loading...
Searching...
No Matches
test.html
1{# Test template for TiledViz server #}
2{% extends "base_test.html" %}
3
4{% block title %}
5<title>TiledViz Server Test</title>
6{% endblock %}
7
8{% block body %}
9{# Main content of the test page #}
10<div style="padding: 20px; font-family: Arial, sans-serif;">
11 <h1>TiledViz Server Test</h1>
12 <p>The TiledViz server is running correctly!</p>
13 {# Show timestamp if available #}
14 <p>Timestamp: {{ moment().format('YYYY-MM-DD HH:mm:ss') if moment else 'N/A' }}</p>
15 {# Back to home link #}
16 <p><a href="{{ url_for('index') }}">Back to Home</a></p>
17</div>
18{% endblock %}