2018-09-07 17:19:36 +02:00
|
|
|
include ../../../../pillar/src/templates/mixins/components
|
2018-09-06 12:54:15 +02:00
|
|
|
|
|
|
|
| {% macro navigation_tabs(title) %}
|
|
|
|
+nav-secondary()
|
2018-09-15 05:36:23 +02:00
|
|
|
+nav-secondary-link(href="{{ url_for('main.main_blog') }}")
|
|
|
|
span Blog
|
2018-09-06 12:54:15 +02:00
|
|
|
|
|
|
|
+nav-secondary-link(
|
|
|
|
class="{% if title == 'dashboard' %}active{% endif %}",
|
|
|
|
href="{{ url_for('projects.index') }}")
|
2018-09-15 05:36:23 +02:00
|
|
|
span My Projects
|
2018-09-06 12:54:15 +02:00
|
|
|
|
|
|
|
| {% if current_user.has_organizations() %}
|
|
|
|
+nav-secondary-link(
|
|
|
|
class="{% if title == 'organizations' %}active{% endif %}",
|
|
|
|
href="{{ url_for('pillar.web.organizations.index') }}")
|
2018-09-15 05:36:23 +02:00
|
|
|
span My Organizations
|
2018-09-06 12:54:15 +02:00
|
|
|
| {% endif %}
|
2018-09-15 05:36:23 +02:00
|
|
|
|
|
|
|
+nav-secondary-link(href="{{ url_for('projects.home_project_shared_images')}}")
|
|
|
|
span Image Sharing
|
2018-09-06 12:54:15 +02:00
|
|
|
| {% endmacro %}
|