Applications users were invited to were not showing in the portfolios

sidebar
This commit is contained in:
George Drummond
2019-05-20 15:18:26 -04:00
parent 42900a20a6
commit 6487fe91ba
7 changed files with 41 additions and 28 deletions

View File

@@ -21,7 +21,7 @@
{% if portfolios %}
{% for other_portfolio in portfolios|sort(attribute='name') %}
{{ SidenavItem(other_portfolio.name,
href=url_for("portfolios.show_portfolio", portfolio_id=other_portfolio.id),
href=url_for("applications.portfolio_applications", portfolio_id=other_portfolio.id),
active=(other_portfolio.id | string) == request.view_args.get('portfolio_id')
) }}
{% endfor %}