{% extends "layout.html.twig" %}
{% set adminMenu = true %}
{% block title %}{{ 'admin.title'|trans }}{% endblock %}
{% block content %}
{% if logs %}
| Id |
IdStation |
Type |
Date |
ResultCode |
|
{% for log in logs %}
| {{ log.id }} |
{{ log.idStation }} |
{{ log.type }} |
{{ log.date }} |
{{ (log.type ~ '.error_code_' ~ log.resultCode)|trans }} |
Do you really want to delete this log ?
|
{% endfor %}
{% else %}
{{ 'admin.empty'|trans({'%item%': 'log'}) }}
{% endif %}
{% if licences %}
| Id |
IdCustomer |
LicenceKey |
StartDate |
EndDate |
NbrStation |
InstallerUrl |
|
{% for licence in licences %}
| {{ licence.id }} |
{{ licence.idCustomer }} |
{{ licence.licenceKey }} |
{{ licence.startDate }} |
{{ licence.endDate }} |
{{ licence.nbrStation }} |
{{ licence.installerUrl }} |
Do you really want to delete this licence ?
|
{% endfor %}
{% else %}
{{ 'admin.empty'|trans({'%item%': 'licence'}) }}
{% endif %}
{% if stations %}
| Id |
IdLicence |
KeyValue |
Manufacturer |
Model |
IdNumber |
Uuid |
MachineName |
OsVersion |
UserDomainName |
UserName |
AesCryptoKey |
IsActive |
|
{% for station in stations %}
| {{ station.id }} |
{{ station.idLicence }} |
{{ station.keyValue }} |
{{ station.manufacturer }} |
{{ station.model }} |
{{ station.idNumber }} |
{{ station.uuid }} |
{{ station.machineName }} |
{{ station.osVersion }} |
{{ station.userDomainName }} |
{{ station.userName }} |
{{ station.aesCryptoKey }} |
{{ station.isActive }} |
Do you really want to delete this station ?
|
{% endfor %}
{% else %}
{{ 'admin.empty'|trans({'%item%': 'station'}) }}
{% endif %}
{% if customers %}
| Id |
Email |
Name |
Firstname |
Address |
Username |
Password |
Salt |
Role |
|
{% for customer in customers %}
| {{ customer.id }} |
{{ customer.email }} |
{{ customer.name }} |
{{ customer.firstname }} |
{{ customer.address }} |
{{ customer.username }} |
{{ customer.password }} |
{{ customer.salt }} |
{{ customer.role }} |
Do you really want to delete this customer ?
|
{% endfor %}
{% else %}
{{ 'admin.empty'|trans({'%item%': 'customer'}) }}
{% endif %}
{% if versions %}
| Id |
IdLicence |
VersionMajor |
VersionMinor |
VersionName |
Date |
|
{% for version in versions %}
| {{ version.id }} |
{{ version.idLicence }} |
{{ version.versionMajor }} |
{{ version.versionMinor }} |
{{ version.versionName }} |
{{ version.date }} |
Do you really want to delete this version ?
|
{% endfor %}
{% else %}
{{ 'admin.empty'|trans({'%item%': 'version'}) }}
{% endif %}
{% if config_settingss %}
| Id |
KeyName |
KeyType |
IsAdmin |
IsMandatory |
Value |
Description |
IsEnabled |
|
{% for config_settings in config_settingss %}
| {{ config_settings.id }} |
{{ config_settings.keyName }} |
{{ config_settings.keyType }} |
{{ config_settings.isAdmin }} |
{{ config_settings.isMandatory }} |
{{ config_settings.value }} |
{{ config_settings.description }} |
{{ config_settings.isEnabled }} |
Do you really want to delete this config_settings ?
|
{% endfor %}
{% else %}
{{ 'admin.empty'|trans({'%item%': 'config_settings'}) }}
{% endif %}
{% endblock %}