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

{{ section_title }}

{% endblock %} {% block content %}
{% if object.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.synonyms }}

  • IUPAC name: {{ object.iupac_name }}

  • CAS: {{ object.cas }}

  • Molar mass (g/mol): {{ object.mass_molar }}

  • 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 %}