flaskpage / templates /test_db.html
futranbg's picture
Update templates/test_db.html
7770e50 verified
raw
history blame contribute delete
397 Bytes
{% 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 %}