Fix up latest.

This commit is contained in:
Flancian 2021-01-09 19:29:00 +01:00
parent 0ddad8a6e8
commit f844da4cef
2 changed files with 3 additions and 1 deletions

View File

@ -35,6 +35,7 @@ def help():
current_app.logger.warning('Not implemented.')
return 'If I had implemented help already, here you\'d see documentation on all URL endpoints. For now, please refer to the <a href="https://flancia.org/go/agora">code</a>.'
@bp.route('')
@bp.route('/latest')
def latest():
return render_template('subnodes.html', header="Latest", subnodes=db.latest())
@ -164,6 +165,7 @@ def nodes():
def subnodes():
return render_template('subnodes.html', subnodes=G.subnodes())
@bp.route('/@')
@bp.route('/users')
def users():
return render_template('users.html', users=db.all_users())

View File

@ -30,7 +30,7 @@ Go back to <a href="/nodes">/nodes</a>?
{% endif %}
{% for subnode in subnodes %}
@{{subnode.user}} noded <a href="{{subnode.url}}">{{subnode.wikilink}}</a>.<br />
<a href="/%{{subnode.user}}/{{subnode.wikilink}}">[[{{subnode.wikilink}}]]</a> by <a href="/@{{subnode.user}}">@{{subnode.user}}</a><br />
{% endfor %}
</div>