{% extends "masterRead.html" %} {% block content %}

Collection #{{ domainObject.id }}

{% if view.canUpdateDomainObject %}

{% endif %}

"{{ domainObject.description|escape }}"

Processes

{% if domainObject.processes %}

This collection presents these processes:

{% for assn in domainObject.processes %} {% endfor %}
Process Events
{% if view.canUpdateDomainObject %} x {% endif %} {{ assn.process.description|escape }} {% for eventAssn in assn.process.events %} {{ eventAssn.event.description|escape }}.  {% endfor %}
{% else %}

This collection does not contain any processes at this time.

{% endif %}
{% if view.canUpdateDomainObject %}

{% endif %}

Products

{% if domainObject.products %}

This collection presents these products:

{% for assn in domainObject.products %} {% endfor %}
ProductStories
{% if view.canUpdateDomainObject %} x {% endif %} {{ assn.product.description|escape }} {% for storyAssn in assn.product.stories %} {{ storyAssn.story.description|escape }}.  {% endfor %}
{% else %}

This collection does not contain any products at this time.

{% endif %}
{% if view.canUpdateDomainObject %}

{% endif %} {% if view.canUpdateDomainObject %}
Do you wish to update this {{domainClassName}}?

{% endif %} {% if view.canDeleteDomainObject %}
Do you wish to delete this {{domainClassName}}?

{% endif %} {% endblock %}