{% extends 'admin/base.html.twig' %} {% block title %}Modifier le template {{ template.name }}{% endblock %} {% block breadcrumb %}Templates de prompts Modifier {{ template.name }}{% endblock %} {% block body %}

Modifier le template "{{ template.name }}"

{% for message in app.flashes('success') %} {% endfor %}
{{ form_start(form) }}
{{ form_row(form.name) }}
{{ form_row(form.code) }}
{{ form_row(form.systemInstructions) }}

Règles avancées (optionnel)
{{ form_row(form.widgetRules) }}
{{ form_row(form.structureRules) }}
{{ form_row(form.styleRules) }}

{{ form_widget(form.active) }} {{ form_label(form.active) }}
{{ form.active.vars.help }}
Prévisualiser Annuler
{{ form_end(form) }}
Informations
  • Créé le : {{ template.createdAt|date('d/m/Y à H:i') }}
  • Dernière modification : {{ template.updatedAt|date('d/m/Y à H:i') }}
{% endblock %}