{% load pretty %}
{% load cache %}
{% cache 600 favourite_detail request.user.id object %}
{% include 'mixins/partials/notify.html' %}
{% if object is not None %}
{{ object }}
{{ object.drug_class }}
Dosage
{% for item in object.dosages.all %}
roa |
{{ item.roa }}
|
unit |
{{ item.unit }}
|
threshold |
{{ item.threshold_lower }} - {{ item.threshold_upper }}
|
light |
{{ item.light_lower }} - {{ item.light_upper }}
|
common |
{{ item.common_lower }} - {{ item.common_upper }}
|
strong |
{{ item.strong_lower }} - {{ item.strong_upper }}
|
heavy |
{{ item.heavy_lower }} - {{ item.heavy_upper }}
|
{% endfor %}
Timing
{% for item in object.timings.all %}
roa |
{{ item.roa }}
|
unit |
{{ item.unit }}
|
onset |
{{ item.onset_lower }} - {{ item.onset_upper }}
|
comeup |
{{ item.comeup_lower }} - {{ item.comeup_upper }}
|
peak |
{{ item.peak_lower }} - {{ item.peak_upper }}
|
offset |
{{ item.offset_lower }} - {{ item.offset_upper }}
|
total |
{{ item.total_lower }} - {{ item.total_upper }}
|
{% endfor %}
Links
{% for item in object.links.all %}
source |
{{ item.source }}
|
url |
{{ item.url }}
|
author |
{{ item.author }}
|
{% endfor %}
Actions
{% for action in object.actions.all %}
- {{ action }}
{% endfor %}
Effects
{% for item in object.effects.all %}
entry |
{{ item.entry.url }}
|
SEI |
{% for effect in item.subjective_effects.all %}
{{ effect }}
{% endfor %}
|
{% endfor %}
Experiences
{% for exp in object.experiences.all %}
- {{ exp }}
{% endfor %}
{% endif %}
{% endcache %}