You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
863 B
31 lines
863 B
{% extends 'base_catalog.html' %}
|
|
{% load i18n %}
|
|
|
|
{% block bread_scrumbs %}
|
|
<div class="bread-crumbs">
|
|
<a href="/">{% trans 'Главная страница' %}</a>
|
|
<a href="{{ object.catalog }}">{% trans 'Участники' %}</a>
|
|
<strong>{{ object.name }}</strong>
|
|
</div>
|
|
{% endblock %}
|
|
|
|
{% block page_title %}
|
|
{% endblock %}
|
|
|
|
{% block content_list %}
|
|
{% if object.blocked %}
|
|
{% include "client/includes/company/company_blocked.html" %}
|
|
{% else %}
|
|
{% if request.user != object.creator or request.GET.logout %}
|
|
{% include 'client/includes/company/company_object.html' with company=object %}
|
|
{% else %}
|
|
{% include 'client/includes/company/company_edit.html' with company=object %}
|
|
{% endif %}
|
|
{% endif %}
|
|
|
|
|
|
{% endblock %}
|
|
|
|
{% block paginator %}
|
|
|
|
{% endblock %}
|
|
|