Julien Fastré 384cb6c793 adding confirmation template
For action which require a confirmation message.

This is a way to have a template for every confirmation message in the
app.

Example of usage :

```
    {{ include('ChillMainBundle:Util:confirmation_template.html.twig',
        {
            # a title, not mandatory
            'title'             : 'Remove membership'|trans,
            # a confirmation question, not mandatory
            'confirm_question'  : 'Are you sure you want to remove
membership of "%name%" from the group "%group%"?'|trans({ '%name%' :
person.firstname ~ ' ' ~ person.lastname, '%group%' :
membership.cgroup.name }),
            # a route for "cancel" button (mandatory)
            'cancel_route'      : 'chill_group_membership_by_person',
            # the parameters for 'cancel' route (default to {} )
            'cancel_parameters' : { 'person_id' : membership.person.id
},
            # the form which will send the deletion. This form
            # **must** contains a SubmitType
            'form'              : form
        } ) }}

```
2016-06-01 16:17:53 +02:00
2016-03-15 16:01:27 +01:00
2016-05-25 11:01:43 +02:00
2015-02-22 21:49:54 +01:00
2016-06-01 16:17:53 +02:00
2015-06-30 14:38:08 +02:00
2016-04-15 23:13:41 +02:00
2016-05-17 21:29:20 +02:00
2015-07-06 01:01:39 +02:00
2015-09-20 21:38:24 +02:00
2016-01-05 14:04:45 +01:00
2016-01-20 17:09:33 +01:00
2014-10-11 15:11:42 +02:00
2014-12-04 18:01:03 +01:00
2015-06-30 14:38:08 +02:00

ChillMain

An app for social-profit organisations

Documentation & installation

Read documentation here : http://chill.readthedocs.org

Description
Miroir de chill-bundles
Readme AGPL-3.0 58 MiB
Languages
PHP 77.3%
Twig 10.4%
Vue 7.4%
JavaScript 3.1%
TypeScript 1%
Other 0.8%