add contact information to config

This commit is contained in:
2025-12-04 06:16:00 +03:00
parent 73af2dc3b9
commit c70f13d069
15 changed files with 90 additions and 14 deletions

View File

@@ -0,0 +1,13 @@
{% extends 'base.html' %}
{% block title %}contact us{% endblock %}
{% block content %}
<div class="darkbg settings-container">
<h1>Contact</h1>
{% if config.ADMIN_CONTACT_INFO %}
<p>The administrators of {{ config.SITE_NAME }} provide the following contact information:</p>
<div>{{ config.ADMIN_CONTACT_INFO | babycode_strict | safe }}</div>
{% else %}
<p>The administrators of {{ config.SITE_NAME }} did not provide any contact information.</p>
{% endif %}
</div>
{% endblock %}