Created
October 25, 2012 10:48
-
-
Save ZeeAgency/3951964 to your computer and use it in GitHub Desktop.
Exemple de surcharge datagrid/filter
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% block admin_nodes_datagrid_filter_online %} | |
{% include "datagrid/filter/online.twig" with {"attrs": { | |
"label": t("Statut"), | |
"field": "status", | |
"options": [ | |
{value: '', text: t("Tous")}, | |
{value: 'online', text: t("Online")}, | |
{value: 'pending', text: t("En attente")}, | |
{value: 'offline', text: t("Offline")} | |
] | |
} %} | |
{% endblock %} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment