add button messages to users

refs #633
This commit is contained in:
Julien Fastré 2015-10-12 22:00:06 +02:00
parent 06c15fdc34
commit 53683cfd5f
2 changed files with 39 additions and 3 deletions

View File

@ -19,7 +19,7 @@ As Chill rely on the `symfony <http://symfony.com>`_ framework, reading the fram
Routing <routing.rst>
Menus <menus.rst>
Access control model <access_control_model.rst>
Message to users <flashbags.rst>
Messages to users <messages-to-users.rst>
Localisation <localisation.rst>
Database migrations <migrations.rst>
Searching <searching.rst>

View File

@ -6,10 +6,14 @@
A copy of the license is included in the section entitled "GNU
Free Documentation License".
Messages to users
******************
.. _flashbags :
Flashbags: message to users
****************************
Flashbags
==========
The four following levels are defined :
@ -33,3 +37,35 @@ The four following levels are defined :
`Flash Messages on Symfony documentation <http://symfony.com/doc/current/book/controller.html#flash-messages>`_
Learn how to use flash messages in controller.
Buttons
========
Four actions are available to decorate `a` links and `buttons`.
To add the action on button, use them as class along with `sc-button` :
.. code-block:: html
<a class="sc-button bt-create">Create an entity</a>
<button class="sc-button bt-submit" type="submit">Submit</button>
+-----------+--------------+------------------------------------------------------------------------------+
| Action | Class | Description |
+===========+==============+==============================================================================+
| Submit | `bt-submit` | Submit a form. |
+-----------+--------------+------------------------------------------------------------------------------+
| Create | `bt-create` | Link to a form to create an entity |
+-----------+--------------+------------------------------------------------------------------------------+
| Reset | `bt-reset` | Reset a form |
+-----------+--------------+------------------------------------------------------------------------------+
| Delete | `bt-delete` | Link to a form to delete an entity |
+-----------+--------------+------------------------------------------------------------------------------+
| Edit | `bt-edit` | Link to a form to edit an entity |
+-----------+--------------+------------------------------------------------------------------------------+
| Update | `bt-update` | Submitting this form will update the entity |
+-----------+--------------+------------------------------------------------------------------------------+
| Action | `bt-action` | Generic link to an action |
+-----------+--------------+------------------------------------------------------------------------------+