{% extends "/base.html" %} {% set active_page = "projects" %} {% set active_link = "dashboard" %} {% import "projects/_helpers.html" as helper %} {% block content %} {% if project %} {{ helper.render_project_local_nav(project, active_link, current_user, pro_features, staff_or_admin) }}
{{ helper.render_project_title(project, subtitle="Dashboard") }} {% if (current_user.is_authenticated() and project.owner_id == current_user.id) or current_user.admin %}
{% if pro_features.get('autoimporter_enabled') %} {% endif %} {% if pro_features.get('auditlog_enabled') %} {% endif %} {% if pro_features.get('webhooks_enabled') %} {% endif %} {% if "pybossa_github_builder" in plugins %} {% endif %}
{% endif %}
{% else %} {{ helper.render_non_existant_project() }} {% endif %} {% endblock %}