Browse Source

Ajout de quelques tooltip + accent sur année

François 6 năm trước cách đây
mục cha
commit
5a6122b66b

+ 1 - 0
src/AppBundle/Form/FilmType.php

@@ -27,6 +27,7 @@ class FilmType extends AbstractType
             ->add('titre', TextType::class)
 		    ->add('annee', DateType::class, array(
 		        'widget'    => 'single_text',
+                'label'     => 'Année',
                 'years'     => range(1930, 2050, 1),
                 'format'    =>  'yyyy',
                 'html5'     =>  true,

+ 0 - 6
src/AppBundle/Resources/views/videotheque/form.html.twig

@@ -4,14 +4,8 @@
             <div class="col-3">
                 <div class="form-group row">
                     {{ form_row(form.titre) }}
-                </div>
-                <div class="form-group row">
                     {{ form_row(form.annee) }}
-                </div>
-                <div class="form-group row">
                     {{ form_row(form.lien) }}
-                </div>
-                <div class="form-group row">
                     {{ form_label(form.mediaVideo, 'Bande annonce') }}
                     {{ form_errors(form.mediaVideo) }}
                     {{ form_widget(form.mediaVideo) }}

+ 4 - 4
src/AppBundle/Resources/views/videotheque/liste.html.twig

@@ -30,9 +30,9 @@
 		<tr>
 			<td>
                 {%  if film.usersWantToView.contains(app.user) %}
-					<a href="#" class="boutonVoir" data-content="{{ film.id }}"><i class="fa fa-star fa-lg"></i></a>
+					<a href="#" class="boutonVoir" data-toggle="tooltip" title="Supprimer ce film de votre liste à voir" data-content="{{ film.id }}"><i class="fa fa-star fa-lg"></i></a>
                 {%  else %}
-					<a href="#" class="boutonVoir" data-content="{{ film.id }}"><i class="fa fa-star-o fa-lg"></i></a>
+					<a href="#" class="boutonVoir" data-toggle="tooltip" title="Ajouter ce film à vos liste à voir" data-content="{{ film.id }}"><i class="fa fa-star-o fa-lg"></i></a>
 
                 {%  endif %}
 			</td>
@@ -77,8 +77,8 @@
 			<td>{{ film.annee | date('Y') }}</td>
 			<td>{% if not film.lien == "" %}<a target="_blank" href="{{ film.lien }}"><i class="fa fa-external-link fa-lg"></i></a>{% endif %}</td>
 			<td>
-				{% if is_granted('ROLE_ADMIN') %}<a href="{{ path('videotheque_supprimer', {'id': film.id})  }}"><i class="fa fa-trash fa-lg", style="color:Tomato;"></i></a>{% endif %}
-				<a href="{{ path('videotheque_modifier', {'id': film.id})  }}"><i class="fa fa-edit fa-lg", style="color:DodgerBlue;"></i></a>
+				<a data-toggle="tooltip" title="Modifier la fiche film" href="{{ path('videotheque_modifier', {'id': film.id})  }}"><i class="fa fa-edit fa-lg", style="color:DodgerBlue;"></i></a>
+                {% if is_granted('ROLE_ADMIN') %}<a href="{{ path('videotheque_supprimer', {'id': film.id})  }}"><i class="fa fa-trash fa-lg", style="color:Tomato;"></i></a>{% endif %}
 			</td>
 		</tr>
 		{% endfor %}