Add interactive navigation controls
This commit is contained in:
parent
a98c87cdfc
commit
435cf4d18f
7 changed files with 125 additions and 45 deletions
19
templates/data.html
Normal file
19
templates/data.html
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
|
||||
{% extends "base.html" %}
|
||||
|
||||
{% block title %}Data{% endblock title %}
|
||||
|
||||
{%- block body %}
|
||||
<h1>Data</h1>
|
||||
|
||||
<p>The raw data used to render this graph is available in the following formats:</p>
|
||||
|
||||
<ul>
|
||||
{% if config.raw_toml %}
|
||||
<li><a href="/graph/toml">TOML</a></li>
|
||||
{% endif %}
|
||||
{% if config.raw_json %}
|
||||
<li><a href="/graph/json">JSON</a></li>
|
||||
{% endif %}
|
||||
</ul>
|
||||
{%- endblock body %}
|
||||
Loading…
Add table
Add a link
Reference in a new issue