datasette/datasette/templates/show_json.html
2018-04-18 22:25:22 -07:00

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 %}