added admin_email to conf
This commit is contained in:
parent
a39cc8f0ee
commit
a54b0a4b53
4
app.py
4
app.py
@ -214,6 +214,10 @@ def signup():
|
|||||||
def get_site_name():
|
def get_site_name():
|
||||||
return {"site_name": conf_obj["site_name"]}
|
return {"site_name": conf_obj["site_name"]}
|
||||||
|
|
||||||
|
@app.context_processor
|
||||||
|
def get_admin_email():
|
||||||
|
return {"admin_email": conf_obj["admin_email"]}
|
||||||
|
|
||||||
def check_pwd_for_conf():
|
def check_pwd_for_conf():
|
||||||
pwd_file_list = list(map(
|
pwd_file_list = list(map(
|
||||||
lambda path : path.split("/")[-1],
|
lambda path : path.split("/")[-1],
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
{
|
{
|
||||||
"site_name": "tildezero.xyz",
|
"site_name": "tildezero.xyz",
|
||||||
|
"admin_email": "admin@example.com",
|
||||||
"listen_ip": "127.0.0.1",
|
"listen_ip": "127.0.0.1",
|
||||||
"shell": {
|
"shell": {
|
||||||
"SHELL_BASH": "/usr/local/bin/bash",
|
"SHELL_BASH": "/usr/local/bin/bash",
|
||||||
|
@ -17,6 +17,6 @@
|
|||||||
|
|
||||||
{% if page_name == "home" %}
|
{% if page_name == "home" %}
|
||||||
<div style="min-height: 300px;"></div>
|
<div style="min-height: 300px;"></div>
|
||||||
<footer>admin: <a href="email:gashapwn@protonmail.com">gashapwn@protonmail.com</a></footer>
|
<footer>admin: <a href="email:{{ admin_email }}">{{ admin_email }}</a></footer>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</html>
|
</html>
|
||||||
|
@ -14,8 +14,7 @@ this page will be updated with your username once approved
|
|||||||
</p>
|
</p>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<p>
|
<p>
|
||||||
if you have questions, email gashapwn@protonmail.com
|
if you have questions, email {{ admin_email }}
|
||||||
or DM gashapwn on IRC at irc.lainchan.org
|
|
||||||
<p>
|
<p>
|
||||||
|
|
||||||
{%endblock%}
|
{%endblock%}
|
||||||
|
Loading…
Reference in New Issue
Block a user