{% extends "artsurvey/base.html" %} {% load artsurvey_templates %} {% block header %}{% endblock %} {% block content %}
{% if form %}

Create or update ArtSelection {% if basket %}-- {{ basket }}{% endif %}

{% csrf_token %}
{% csrf_token %}
{{ form }}
{% endif %} {% if basket %}

ArtSelection {{ basket.title }} {% if user.is_authenticated %} [ edit | delete ] {% endif %}

{{ basket.notes }}

{% for src in basket.sources.all %} {% endfor %}
Name Survey CName Notes Follow up Category Type Paper Notes Papers Files
{{ forloop.counter }} {{ src.name }} {{ src.survey }} {% if src.cname %}{{ src.cname }}{% endif %} {% if src.notes %}{{ src.notes|truncatechars:20 }}{% endif %} {% if src.follow_up %}{{ src.follow_up|truncatechars:20 }}{% endif %} {% if src.category %}{{ src.category }}{% endif %} {{ src.get_otype }} {% if src.notes_paper %}{{ src.notes_paper|truncatechars:20 }}{% endif %} {% for paper in src.catalog.all %} {{ paper }}, {% endfor %} {% for upload in src.uploads.all %} {% endfor %} Remove

{% endif %}
{% endblock %}