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

Process #{{ domainObject.id }}

"{{ domainObject.description|escape }}"

Goals

{% if domainObject.goals %}

The following have been identified as goals of this process:

{% for assn in domainObject.goals %} {% endfor %}
Goal
{% if view.canUpdateDomainObject %} x {% endif %} {{ assn.goal.description|escape }}
{% else %}

No goals have been identified for this process.

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

{% endif %}

Events

{% if domainObject.events %}

The following have been identified as events of this process:

{% for assn in domainObject.events %} {% endfor %}
EventStories
{% if view.canUpdateDomainObject %} x {% endif %} {{ assn.event.description|escape }} {% for respAssn in assn.event.responses %} {{ respAssn.story.description|escape }}.  {% endfor %}
{% else %}

This process hasn't registered any events.

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

{% endif %}

Collections

{% if domainObject.collections %}

This process has been included in the following collections:

{% for assn in domainObject.collections %} {% endfor %}
Collection
{% if view.canUpdateDomainObject %} x {% endif %} {{ assn.collection.description|escape }}
{% else %}

This process hasn't been registered in any collections.

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

{% endif %} {% if domainObject.listProducts %}

Products

The following products support the stories of this process:

{% for product in domainObject.listProducts %} {% endfor %}
ProductStories
{{ product.description|escape }} {% for assn in product.stories %} {{ assn.story.description|escape }}.  {% endfor %}
{% endif %} {% if view.canUpdateDomainObject %}
Do you wish to update this {{domainClassName}}?

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

{% endif %} {% endblock %}