mirror of
https://github.com/simonw/datasette.git
synced 2025-12-10 16:51:24 +01:00
12 lines
221 B
HTML
12 lines
221 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}{{ filename }}{% endblock %}
|
|
|
|
{% block body_class %}show-json{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>{{ filename }}</h1>
|
|
|
|
<pre>{{ data|tojson(indent=4) }}</pre>
|
|
|
|
{% endblock %}
|