mirror of
https://github.com/simonw/datasette.git
synced 2025-12-10 16:51:24 +01:00
19 lines
340 B
HTML
19 lines
340 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}{{ filename }}{% endblock %}
|
|
|
|
{% block body_class %}show-json{% endblock %}
|
|
|
|
{% block nav %}
|
|
<p class="crumbs">
|
|
<a href="{{ urls.instance() }}">home</a>
|
|
</p>
|
|
{{ super() }}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>{{ filename }}</h1>
|
|
|
|
<pre>{{ data_json }}</pre>
|
|
|
|
{% endblock %}
|