{% extends 'base.html.twig' %} {% block titlesm %} {{ 'crontab.title'|trans }}{% endblock %} {% block body %}
{{ 'crontab.period'|trans }} | {{ 'crontab.command'|trans }} | {{ 'crontab.description'|trans }} |
---|---|---|
{{ form_widget(form.period, { 'attr': {'placeholder': '* /5 * * * *'} }) }} {{ form_errors(form.period)}} | {{ form_widget(form.command, { 'attr': {'placeholder': 'Your command'} }) }} | {{ form_widget(form.description, { 'attr': {'placeholder': 'Your description'} }) }} |