{% extends "admin.html" %} {% load i18n %} {% block extra_admin_head %} {% endblock %} {% block body %}
{% trans "This document describes the actors and funcionalities of the system" %} {{ settings.initials }}.
{{ documentation.description|linebreaks }}
{% endif %}{% trans "Group" %} | {% trans "Description" %} | {% if documentation.organization_name %}{% trans "Scope" %} | {% endif %}
---|---|---|
![]() {{ actor.name }} |
{{ actor.description|format }} | {% if documentation.organization_name %}{{ actor.scope }} | {% endif %}
ID: | UC-{{ usecase.name|slugify|upper }} |
{% trans "Title" %}: | {{ usecase.name }} |
{% trans "Description" %}: | {{ usecase.description|format }} |
{% trans "Primary Actor" %}: | {% for actor in usecase.actors %}{% if forloop.first %}{{ actor|format }} {% endif %}{% endfor %} |
{% trans "Secondary Actors" %}: | {% for actor in usecase.actors %}{% if not forloop.first %}{{ actor|format }} {% endif %}{% endfor %} |
{% trans "Preconditions" %}: | {% for pre_condition in usecase.pre_conditions %} {{ pre_condition }}{% endfor %} |
{% trans "Business Rules" %}: | {{ usecase.business_rules|ordered_list }} |
{% trans "Postconditions" %}: | {{ usecase.post_condition|format }} |
{% trans "Main Scenario" %}: | {{ usecase.get_interactions_as_string|print_format }} |
{% trans "Extensions" %}: |