diff options
-rw-r--r-- | CHANGELOG.md | 2 | ||||
-rw-r--r-- | templates/web/base/main_nav.html | 2 | ||||
-rw-r--r-- | templates/web/base/main_nav_items.html | 2 |
3 files changed, 4 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index d2333a85e..0df6b5fdf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,8 @@ * Unreleased - New features: - Area summary statistics page in admin #1834 + - Bugfixes + - Shortlist menu item always remains a link #1855 * v2.2 (13th September 2017) - New features: diff --git a/templates/web/base/main_nav.html b/templates/web/base/main_nav.html index b8a3165a4..9736697e3 100644 --- a/templates/web/base/main_nav.html +++ b/templates/web/base/main_nav.html @@ -8,7 +8,7 @@ %] [% BLOCK navitem ~%] <li [% liattrs %]> - [%~ IF c.req.uri.path == uri ~%] + [%~ IF c.req.uri.path == uri AND NOT always_url ~%] <span [% attrs %]>[% label %]</span> [%~ ELSE ~%] <a href="[% base %][% uri %][% suffix IF suffix %]" [% attrs %]>[% label %]</a> diff --git a/templates/web/base/main_nav_items.html b/templates/web/base/main_nav_items.html index 845ef7c65..84657444e 100644 --- a/templates/web/base/main_nav_items.html +++ b/templates/web/base/main_nav_items.html @@ -7,7 +7,7 @@ [%~ END ~%] [%~ IF c.user_exists AND c.user.has_body_permission_to('planned_reports') ~%] - [%~ INCLUDE navitem uri='/my/planned' label=loc('Shortlist') ~%] + [%~ INCLUDE navitem always_url=1 uri='/my/planned' label=loc('Shortlist') ~%] [%~ END ~%] |