Files
Owlbot/owlbot/builtin_modules/clips/templates/error.html
T
LogalDeveloper 84b057a400
Dependency Audit / Dependency Audit (push) Successful in 18s
CI / Formatting (push) Successful in 14s
CI / Linting (push) Successful in 15s
CI / Tests (Python 3.12) (push) Successful in 29s
CI / Tests (Python 3.13) (push) Successful in 28s
CI / Tests (Python 3.14) (push) Successful in 27s
CI / Type Checking (push) Successful in 25s
CI / Spelling (push) Successful in 15s
Added clips module.
2026-03-03 19:29:23 -05:00

14 lines
466 B
HTML

{% extends "base.html" %}
{% block title %}Error{% endblock %}
{% block content %}
<nav aria-label="breadcrumb">
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="{{ list_url }}">Clips</a></li>
<li class="breadcrumb-item active" aria-current="page">Error</li>
</ol>
</nav>
<h1 class="mb-3">Error</h1>
<div class="alert alert-danger" role="alert">{{ message }}</div>
<a href="{{ list_url }}">Return to clips list</a>
{% endblock %}