Stay on the same page after pin,link,boost,delete,block (#43)

This commit is contained in:
Chaiwat Suttipongsakul 2019-02-26 16:53:14 +07:00 committed by Thomas Sileo
parent 5b38c5e723
commit 552344a2c5

View file

@ -115,7 +115,15 @@
{% if session.logged_in %} {% if session.logged_in %}
{% set perma_id = obj.id | permalink_id %} {% set perma_id = obj.id | permalink_id %}
{% if request.args.get('older_than') %}
{% set redir = request.path + "?older_than=" + request.args.get('older_than') + "#activity-" + perma_id %}
{% elif request.args.get('newer_than') %}
{% set redir = request.path + "?newer_than=" + request.args.get('newer_than') + "#activity-" + perma_id %}
{% else %}
{% set redir = request.path + "#activity-" + perma_id %} {% set redir = request.path + "#activity-" + perma_id %}
{% endif %}
{% set aid = obj.id | quote_plus %} {% set aid = obj.id | quote_plus %}
{% endif %} {% endif %}