{% extends 'generic/object.html' %} {% load render_table from django_tables2 %} {% load helpers %} {% block content %}
| Название | {{ object.name|placeholder }} | |
|---|---|---|
| Система | {% if object.system %}{{ object.system|linkify }} | {% else %}- | {% endif %}
| Подсистема | {% if object.subsystem %}{{ object.subsystem|linkify }} | {% else %}- | {% endif %}
| Подсистемы |
{% for subsystem in object.subsystems.all %}
{{ subsystem|linkify }} {% endfor %} |
|
| В составе роли | {% if object.parent %}{{ object.parent|linkify }} | {% else %}- | {% endif %}
| Состав данных | {{ object.data_composition|placeholder }} | |
| Интерфейс выгрузки | {{ object.upload_interface|placeholder }} | |
| Форма выгрузки | {{ object.upload_format|placeholder }} | |
| Mapping SecurityGroup | {{ object.mapping_security_group|placeholder }} | |
| СЭД | {{ object.sed|placeholder }} | |
| FSLink | {{ object.link|placeholder }} | |
| Описание | {{ object.description|placeholder }} | |
| Короткий URL | {{ object.slug|placeholder }} |