{% for recommendation in recommendations %} {% if recommendation.posologia or recommendation.consejo_salud or recommendation.suplementos|length %}
{% if recommendation.suplementos|length %}

{{ gettext("Te recomendamos...") }}

{% for supplement in recommendation.suplementos %}
{% if supplement.foto %} {{ supplement.nombre }} {% endif %}
    {% if supplement.nombre %}
  • {{ gettext("Nombre") }}

    {{ supplement.nombre }}

  • {% endif %} {% if supplement.presentacion %}
  • {{ gettext("Presentación") }}

    {{ supplement.presentacion }}

  • {% endif %} {% if supplement.modo_de_empleo %}
  • {{ gettext("Modo de empleo") }}

    {{ supplement.modo_de_empleo }}

  • {% endif %} {% if supplement.indicaciones %}
  • {{ gettext("Indicaciones") }}

    {{ supplement.indicaciones }}

  • {% endif %} {% if supplement.contenido %}
  • {{ gettext("Contenido") }}

    {{ supplement.contenido }}

  • {% endif %}
{% endfor %}
{% endif %} {% if recommendation.posologia %}

{{ gettext("Posología recomendada") }}

{{ markdown.render(recommendation.posologia)|safe }}
{% endif %} {% if recommendation.consejo_salud %}

{{ gettext("Consejos") }}

{{ markdown.render(recommendation.consejo_salud)|safe }}
{% endif %}
{% endif %} {% endfor %}