mirror of
https://github.com/simonw/datasette.git
synced 2025-12-10 16:51:24 +01:00
11 lines
No EOL
308 B
HTML
11 lines
No EOL
308 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Databases{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>Database{% if databases.keys()|length != 1 %}s{% endif %}</h1>
|
|
{% for name, info in databases.items() %}
|
|
<p><a href="{{ name}}-{{ info.hash|truncate(7, end='') }}">{{ name }}</a></p>
|
|
{% endfor %}
|
|
|
|
{% endblock %} |