1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-27 13:34:28 +00:00

Add Wiki list

This commit is contained in:
Steffo 2018-07-15 14:50:12 +02:00
parent 5a3158535b
commit 65b345281d
2 changed files with 4 additions and 3 deletions

View file

@ -29,8 +29,8 @@
</ul>
<h2>Wiki</h2>
<ul>
{% for key in wiki_pages %}
<li><a href="wiki/{{ key }}">{{ key }}</a></li>
{% for page in wiki_pages %}
<li><a href="wiki/{{ page.key }}">{{ page.key }}</a></li>
{% endfor %}
</ul>
{% endblock %}

View file

@ -24,8 +24,9 @@ def page_main():
if fl_session.get("user_id"):
db_session = db.Session()
royals = db_session.query(db.Royal).all()
wiki_pages = db_session.query(db.WikiEntry).all()
db_session.close()
return render_template("main.html", royals=royals)
return render_template("main.html", royals=royals, wiki_pages=wiki_pages)
return redirect(url_for("page_login"))