CI / Formatting (push) Successful in 5s
CI / Linting (push) Successful in 5s
CI / Tests (Python 3.12) (push) Successful in 2m48s
CI / Tests (Python 3.13) (push) Successful in 2m49s
CI / Tests (Python 3.14) (push) Successful in 2m43s
CI / Type Checking (push) Successful in 9s
CI / Spelling (push) Successful in 5s
16 lines
443 B
HTML
16 lines
443 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}{{ title }}{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1 class="mb-3">{{ title }}</h1>
|
|
<div class="alert alert-warning" role="alert">
|
|
<p class="mb-0">{{ body_message }}</p>
|
|
{% if command_message is none %}
|
|
<p class="mb-0">Run <code>{{ command_prefix }}connect</code> in chat and try again.</p>
|
|
{% else %}
|
|
<p class="mb-0">{{ command_message }}</p>
|
|
{% endif %}
|
|
</div>
|
|
{% endblock %}
|