datasette/datasette/templates/show_json.html
2022-10-13 14:42:52 -07:00

12 lines
209 B
HTML

{% extends "base.html" %}
{% block title %}{{ filename }}{% endblock %}
{% block body_class %}show-json{% endblock %}
{% block content %}
<h1>{{ filename }}</h1>
<pre>{{ data_json }}</pre>
{% endblock %}