datasette/datasette/templates/error.html

11 wiersze
384 B
HTML

{% extends "base.html" %}
{% block title %}{% if title %}{{ title }}{% else %}Error {{ status }}{% endif %}{% endblock %}
{% block content %}
<h1>{% if title %}{{ title }}{% else %}Error {{ status }}{% endif %}</h1>
<div style="padding: 1em; margin: 1em 0; border: 3px solid red;">{{ error }}</div>
<a href="javascript:window.history.back();">Return to Previous</a>
{% endblock %}