{% extends 'lara_django_base/lara_base.html' %} {% load static %} {% partialdef project-create-card %} {% include 'lara_django_projects/components/project_create_card.html' %} {% endpartialdef project-create-card %} {% partialdef experiment-create-card %} {% include 'lara_django_projects/components/experiment_create_card.html' %} {% endpartialdef experiment-create-card %} {% partialdef project-experiment-card %} {% include 'lara_django_projects/components/project_experiment_card.html' %} {% endpartialdef project-experiment-card %} {% block toolbar %}

{{ section_title }}

{% endblock %} {% block content %}

{% if object.name_display %} {{ object.name_display }} {% else %} {{ object.name_full }} {% endif %} {% if object.data_type %}({{ object.data_type }}){% endif %}

Description:

{{ object.description }}

  • Name: {{ object.name }}

  • Started: {{ object.datetime_start }}

  • Entities: {% for entity in object.entities.all %} {{ entity.name_full }} ({{ entity.acronym }}, {{ entity.role.name }}) {% if not forloop.last %},{% endif %} {% endfor %}

  • {% if object.groups.all %}
  • Groups: {% for group in object.groups.all %}{{ group.name }}{% endfor %}

  • {% endif %}
{% if subprojects %}
{% for item in subprojects %} {% with item_id=item.project_id %} {% with item_url='lara_django_projects:project-detail' %} {% partial project-experiment-card %} {% endwith %} {% endwith %} {% endfor %}
{% else %} {% partial project-create-card %} {% endif %}
{% if experiments %}
{% for item in experiments %} {% with item_id=item.experiment_id %} {% with item_url='lara_django_projects:experiment-detail' %} {% partial project-experiment-card %} {% endwith %} {% endwith %} {% endfor %}
{% else %} {% partial experiment-create-card %} {% endif %}

Data File: {{ object.file }}

{% endblock %} {% block scripts %} {% endblock %}