{% extends "base.html" %} {% load columns %} {% block extratitle %} {{ wydzial }} {% endblock %} {% block breadcrumbs %} {{ block.super }}
  • {{ wydzial }}
  • {% endblock %} {% block content %}

    {{ wydzial }}

    {% include "browse/go_to_admin_change.html" with url="admin:bpp_wydzial_change" pk=wydzial.pk group="struktura" %} {% if wydzial.pokazuj_opis and wydzial.opis %} {{ wydzial.opis|safe }} {% endif %}
    {% if wydzial.wymaga_nawigacji %} {% endif %}
    {% if wydzial.aktualne_jednostki.exists %}
    {% if wydzial.wymaga_nawigacji %}

    Jednostki aktualne

    {% endif %}
    {% for col in wydzial.aktualne_jednostki|columns:2 %}
    {% for jednostka in col %} {{ jednostka.nazwa }}
    {% endfor %}
    {% endfor %}
    {% endif %} {% if wydzial.kola_naukowe.exists %}
    {% if wydzial.wymaga_nawigacji %}

    Koła naukowe

    {% endif %}
    {% for col in wydzial.kola_naukowe|columns:2 %}
    {% for jednostka in col %} {{ jednostka.nazwa }}
    {% endfor %}
    {% endfor %}
    {% endif %} {% if wydzial.historyczne_jednostki.exists %}
    {% if wydzial.wymaga_nawigacji %}

    Jednostki historyczne

    {% endif %}
    {% for col in wydzial.historyczne_jednostki|columns:2 %}
    {% for jednostka in col %} {{ jednostka.nazwa }}
    {% endfor %}
    {% endfor %}
    {% endif %}
    {% endblock %}