{% extends "site_base.html" %} {% load comments %} {% block extranav %}
  • {{ project }}
  • {% endblock %} {% block content %}

    Project {{ project.title }}

    {{ cork.description }}

    Corkboards for this project

    {% if user.is_authenticated %}

    Add New Corkboard

    A corkboard is a place to group images for review by client or project team.
    Example: a home page corkboard will store all screenshots of the home page design revisions.

    {% csrf_token %} {% if form.non_field_errors %}
    {{ form.non_field_errors }}
    {% endif %} {% for field in form %} {% if field.is_hidden %} {{ field }} {% else %}
    {{ field }} {% if field.help_text or field.errors %} {{ field.errors }} {{ field.help_text }} {% endif %}
    {% endif %} {% endfor %}

    {% endif %} {% endblock %}