15 lines
591 B
HTML
15 lines
591 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
<div class="container my-5">
|
|
<div class="card bg-dark text-white border-secondary">
|
|
<div class="card-body">
|
|
<h1 class="card-title mb-4">{{ app_name|title }} Help</h1>
|
|
<p class="card-text">Welcome to the radiology education platform. There is no custom help document for the <strong>{{ app_name }}</strong> application yet.</p>
|
|
<hr class="border-secondary my-4">
|
|
<a href="javascript:history.back()" class="btn btn-secondary">Go Back</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|