en/templates/empty.html

20 lines
544 B
HTML

<p>There are no nodes. The graph is either empty or failed to parse.</p>
{% if graph.meta.messages %}
<p>Error messages:</p>
<pre>
{{ graph.meta.messages }}
</pre>
{% endif %}
{% if graph.meta.config.raw %}
<p>Check the
{% if graph.meta.config.raw_toml %}
<a href="/graph/toml">
{% elif graph.meta.config.raw_json %}
<a href="/graph/json">
{% endif %}
raw endpoints
{%- if graph.meta.config.raw_toml or graph.meta.config.raw_json -%}
</a>
{% endif %}
for possible parsing errors.</p>
{% endif %}