{% extends "Global/layout.html.twig" %} {% set pagetitle = 'Add a new scanner' | trans %} {% if scanner.id %}{% set pagetitle = 'Update the scanner' | trans %}{% endif %} {% block title %}{{pagetitle}}{% endblock %} {% block content %} {% set navigation = [{ "dashboard_index": ('Dashboard' | trans), "dashboard_organizer_scanner": ('my scanners' | trans), "current":(pagetitle) }] %} {% include "Global/navigation.html.twig" with navigation %}
{% if scanner.id %} {% include "Global/message.html.twig" with { type: "info", icon: "fas fa-info-circle", "message": ("Leave the password empty to keep the old one"|trans) } %} {% endif %} {{ form_start(form, {'attr': {'novalidate': 'novalidate'}}) }} {{ form_widget(form) }} {{ form_end(form) }}
{% endblock %} {% block javascripts %} {% if scanner.id %} {% endif %} {% endblock %}