{% extends "account/layout.html" %} {% block title %}{{ super() }} - {{ page | capitalize }}{% endblock %} {% block pagetitle %}PROJECTS{% endblock %} {% block content %} {% include 'modals/confirm.html' %} {% include 'projects/modal.html' %} {% for (category, message) in get_flashed_messages(request) %}
{{ message }}
{% endfor %} {% if projects %}
New Project
{% if request.session['view'] == 'list' %} {% include 'projects/list.html' %} {% else %} {% include 'projects/grid.html' %} {% endif %}
{{ request.session['access_token'] }}
{% else %}
No projects yet

Create your first project to get started

Create Project
{% endif %} {% endblock %} {% block scripts %} {{ super() }} {% endblock %}