44 lines
1.4 KiB
Twig
44 lines
1.4 KiB
Twig
{%- include 'blocks/head.html.twig' with { title: pageTitle, cssFolderPath: cssFolderPath } %}
|
|
<body class="main-page">
|
|
<div class="aside aside-left">
|
|
<div class="aside__container">
|
|
<div class="header">
|
|
{%- include 'blocks/menu-header.html.twig' %}
|
|
</div>
|
|
<div class="content">
|
|
{%- include 'blocks/main-menu.html.twig' with { mainMenu: mainMenu } %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="aside aside-right">
|
|
{%- include 'blocks/header.html.twig' with {
|
|
imagesFolderPath: imagesFolderPath,
|
|
methodsPath: methodsPath,
|
|
relativeToRootPath: relativeToRootPath
|
|
} %}
|
|
|
|
<div class="content">
|
|
<div class="page-data">
|
|
<div class="table">
|
|
<div class="part-table">
|
|
<div class="row-header">
|
|
<div>Код ошибки</div>
|
|
<div>Текстовое описание ошибки</div>
|
|
</div>
|
|
{% for errorValue in errorType.values %}
|
|
<div class="row-body">
|
|
<div>{{ errorValue.value }}</div>
|
|
<div>{{ errorValue.description | escape }}</div>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{%- include 'blocks/scripts.html.twig' with { jsFolderPath: jsFolderPath } %}
|
|
|
|
</body>
|
|
</html> |