mirror of
https://github.com/Lynnesbian/FediBooks/
synced 2024-11-25 16:48:58 +00:00
show basic coming soon page for unimplemented features
This commit is contained in:
parent
887aab6a71
commit
3b7b479b1b
2 changed files with 15 additions and 0 deletions
|
@ -168,3 +168,10 @@ label {
|
||||||
form .row {
|
form .row {
|
||||||
margin: 10px 0;
|
margin: 10px 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.coming-soon {
|
||||||
|
height: 200px;
|
||||||
|
width: 200px;
|
||||||
|
background: center/contain url("https://lynnesbian.space/img/bune.png");
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
|
8
webui.py
8
webui.py
|
@ -81,6 +81,14 @@ def bot_delete(id):
|
||||||
instance = id.split("@")[2]
|
instance = id.split("@")[2]
|
||||||
return render_template("bot_delete.html", instance = instance)
|
return render_template("bot_delete.html", instance = instance)
|
||||||
|
|
||||||
|
@app.route("/bot/chat/<id>")
|
||||||
|
def bot_chat(id):
|
||||||
|
return render_template("coming_soon.html")
|
||||||
|
|
||||||
|
@app.route("/bot/blacklist/<id>")
|
||||||
|
def bot_blacklist(id):
|
||||||
|
return render_template("coming_soon.html")
|
||||||
|
|
||||||
@app.route("/bot/accounts/<id>")
|
@app.route("/bot/accounts/<id>")
|
||||||
def bot_accounts(id):
|
def bot_accounts(id):
|
||||||
return render_template("bot_accounts.html")
|
return render_template("bot_accounts.html")
|
||||||
|
|
Loading…
Reference in a new issue