mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-25 19:48:49 +02:00
- Autoloader for portal files in the itop-portal-base module - Dependencies moved to root composer.json - Add autoloader for /core and /application content
23 lines
712 B
Twig
23 lines
712 B
Twig
{% extends '@WebProfiler/Profiler/layout.html.twig' %}
|
|
|
|
{% set messages = {
|
|
'no_token' : {
|
|
status: 'error',
|
|
title: (token|default('') == 'latest') ? 'There are no profiles' : 'Token not found',
|
|
message: (token|default('') == 'latest') ? 'No profiles found in the database.' : 'Token "' ~ token|default('') ~ '" was not found in the database.'
|
|
}
|
|
} %}
|
|
|
|
{% block summary %}
|
|
<div class="status status-{{ messages[about].status }}">
|
|
<div class="container">
|
|
<h2>{{ messages[about].status|title }}</h2>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|
|
|
|
{% block panel %}
|
|
<h2>{{ messages[about].title }}</h2>
|
|
<p>{{ messages[about].message }}</p>
|
|
{% endblock %}
|