{% extends baseTemplate %} {% block content %} {% load fb_versions %}

{{ designer.designer_name }}

{{ designer.about|safe }}
{% for item in designer.articles.all %} {% if item.article_type == 0 %}
{% endif %} {% if item.article_type == 1 %}
{% endif %} {% if item.article_type == 2 %}
{% endif %}

{{ item.article_headline }}

{{ item.article_text_lead|safe }}
{{ item.article_text|safe }}

zatvori

{% endfor %}
{% if designer.footnotes.all %}

Fusnote

{% for footnote in designer.footnotes.all %}
{{ footnote.footnote_text|safe }}
{% endfor %}
{% endif %} {% if designer.references.all %}

Reference

{% for reference in designer.references.all %}
{{ reference.reference_text|safe }}
{% endfor %}
{% endif %}
{% for item in designer.gallery.all %} {% if item.work_type == 3 %}
{{ item.quote|safe }}
{{ item.text_small_short|safe }}
{{ item.text_small_full|safe }}
{% elif item.work_type == 4 %}
{{ item.quote|safe }}
{{ item.text_small_short|safe }}
{{ item.text_small_full|safe }}
{% else %}
{{ item.text_small_short|safe }}
{{ item.text_small_full|safe }}
{% endif %} {% endfor %}
{% include "designer-index.html" %}

{{ designer.designer_name }}

{{ designer.about|safe }}
{% for item in designer.gallery.all %} {% if item.work_type == 3 %}
{{ item.quote|safe }}
{{ item.text_small_short|safe }}
{{ item.text_small_full|safe }}
{% elif item.work_type == 4 %}
{{ item.quote|safe }}
{{ item.text_small_short|safe }}
{{ item.text_small_full|safe }}
{% else %}
{{ item.text_small_short|safe }}
{{ item.text_small_full|safe }}
{% endif %} {% endfor %}
{% endblock %}