mirror of
https://github.com/Lynnesbian/FediBooks/
synced 2024-11-25 08:38:59 +00:00
add bot accounts management page
This commit is contained in:
parent
e0f3a232bc
commit
043f85a9b3
2 changed files with 40 additions and 0 deletions
36
templates/bot_accounts.html
Normal file
36
templates/bot_accounts.html
Normal file
|
@ -0,0 +1,36 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>FediBooks</title>
|
||||
{% include 'imports.html' %}
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="container centred">
|
||||
<h1 class="thin centred">Set accounts to learn from</h1>
|
||||
<p class="large centred">@botname@example.com</p>
|
||||
<p class="centred" style="margin: 50px 0;">
|
||||
<a class="button btn-primary btn-large" href="/bot/accounts/add" role="button"><i class="fas fa-plus"></i> Add account</a>
|
||||
<a class="button btn-secondary btn-large" href="/" role="button"><i class="fas fa-arrow-left"></i> Back</a>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="container centred">
|
||||
<div class="container" style="min-height: 300px;">
|
||||
<div class="row light">
|
||||
<div class="panel-icon"></div>
|
||||
<div class="panel-text">
|
||||
<div class="panel-name">@user<span class="subtle">@instan.ce</span></div>
|
||||
<div class="panel-status">12345 posts stored</div>
|
||||
</div>
|
||||
<div class="panel-actions">
|
||||
<a class="button btn-secondary" href="/bot/accounts/toggle/insert id here" title="Turn on/off"></i></a><a class="button btn-dangerous" href="/bot/accounts/delete/insert id here" title="Delete"><i class="fas fa-trash"></i></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{% include 'footer.html' %}
|
||||
</body>
|
||||
</html>
|
4
webui.py
4
webui.py
|
@ -43,6 +43,10 @@ def bot_edit(id):
|
|||
def bot_delete(id):
|
||||
return render_template("bot_delete.html")
|
||||
|
||||
@app.route("/bot/accounts/<id>")
|
||||
def bot_accounts(id):
|
||||
return render_template("bot_accounts.html")
|
||||
|
||||
@app.route("/bot/create/")
|
||||
def bot_create():
|
||||
session['step'] = 4
|
||||
|
|
Loading…
Reference in a new issue