{% extends 'lara_django_base/lara_base.html' %} {% load static %} {% block toolbar %}

{{ section_title }}

{% endblock %} {% block content %}
{%if object.substance.image %}
card-image
{% endif %}
{% if object.name %}{{ object.name }} {% else %} {{ object.name_full }} {% endif %} {% if object.data_type %}({{ object.data_type }}) {% endif %}

{{ object.description }}

  • Synonyms: {{ object.substance.synonyms }}

  • IUPAC name: {{ object.substance.IUPAC_name }}

  • CAS: {{ object.substance.CAS }}

  • Molecular weight (g/mol): {{ object.substance.mwt }}

  • Location: {{ object.location }}

  • Users: {% for user in object.users.all %} {{ user.name_full }} ({{ user.acronym }}) {% if not forloop.last %},{% endif %} {% endfor %}

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

{% endblock %}