| 1234567891011121314 |
- <html>
- <head>
- <meta name="viewport" content="width=device-width, initial-scale=1" />
- <title>Hello</title>
- <link href="{{ url_for('static', path='/style.css') }}" rel="stylesheet">
- </head>
- <body class="admin">
- <h1>Main admin page</h1>
- {% for name, coll in collections.items() %}
- <h2>{{ name }}</h2>
- {% endfor %}
- </body>
- </html>
|