adding css class for buttons

This commit is contained in:
Marc Ducobu 2016-03-25 08:53:29 +01:00
parent a6d4cb5f5e
commit 5949fd8cfb

View File

@ -23,12 +23,12 @@
<ul class="record_actions">
<li>
{# {% if is_granted('CHILL_EVENT_SEE_DETAILS', event) %} #}
<a href="{{ path('chill_event__event_show', { 'event_id' : event.id } ) }}" class="sc-button btn-action">
<a href="{{ path('chill_event__event_show', { 'event_id' : event.id } ) }}" class="sc-button black">
{{ 'See'|trans }}
</a>
{# {% endif %} #}
{% if is_granted('CHILL_EVENT_UPDATE', event) %}
<a href="{{ path('chill_event__event_edit', { 'event_id' : event.id } ) }}" class="sc-button btn-edit">
<a href="{{ path('chill_event__event_edit', { 'event_id' : event.id } ) }}" class="sc-button bt-update">
{{ 'Edit'|trans }}
</a>
{% endif %}
@ -44,7 +44,8 @@
<ul class="record_actions">
<li>
<a href="{{ path('chill_event__event_new') }}" class="sc-button btn-create" >
<a href="{{ path('chill_event__event_new') }}" class="sc-button bt-create" >
<i class="fa fa-plus"></i>
{{ 'New event'|trans }}
</a>
</li>