{% load pretty %}
{% load cache %}
{% cache 600 favourite_detail request.user.id object %}
{% include 'mixins/partials/notify.html' %}
{% if object is not None %}
{{ object.name }} - {{ object.nickname }} - {{ object.common_name }}
{{ object.drug_class }}
Dosage
{% for dose in object.dosages.all %}
- {{ dose }}
{% endfor %}
Timing
{% for timing in object.timings.all %}
- {{ timing }}
{% endfor %}
Links
{% for link in object.links.all %}
- {{ link }}
{% endfor %}
Actions
{% for action in object.actions.all %}
- {{ action }}
{% endfor %}
Effects
{% for effect in object.effects.all %}
- {{ effect }}
{% endfor %}
Experiences
{% for exp in object.experiences.all %}
- {{ exp }}
{% endfor %}
{% endif %}
{% endcache %}