File size: 397 Bytes
4f27dd5 |
1 2 3 4 5 6 7 8 9 10 11 12 |
{% extends 'base.html' %}
{% block content %}
<h2>Kiểm tra Kết nối Cơ sở dữ liệu</h2>
<form method="POST">
<button type="submit">Kiểm tra kết nối</button>
</form>
{% if status != 'none' %}
<p><strong>Phiên bản PostgreSQL:</strong> {{ db_version }}</p>
<p><strong>Trạng thái:</strong> {{ status }}</p>
{% endif %}
{% endblock %} |