Browse Source

bug fix: les chevrons n'était pas en code html et posaient problèmes lors des tests.

bastien 13 years ago
parent
commit
595a95da07

+ 2 - 2
src/Muzich/GroupBundle/Resources/views/Default/myList.html.twig View File

5
 {% block content %}
5
 {% block content %}
6
 
6
 
7
   <a href="#" id="group_add_link">
7
   <a href="#" id="group_add_link">
8
-    {{ 'group.add_group'|trans({}, 'navigationui') }} >>
8
+    {{ 'group.add_group'|trans({}, 'navigationui') }} &gt;&gt;
9
   </a>
9
   </a>
10
 
10
 
11
   {% if groups|length %}
11
   {% if groups|length %}
29
   <div id="group_add_box" style="display: none;">
29
   <div id="group_add_box" style="display: none;">
30
 
30
 
31
     <a href="#" id="group_add_close_link">
31
     <a href="#" id="group_add_close_link">
32
-      << {{ 'group.add_group_box.close'|trans({}, 'navigationui') }}
32
+      &lt;&lt; {{ 'group.add_group_box.close'|trans({}, 'navigationui') }}
33
     </a>
33
     </a>
34
     
34
     
35
     <h2>{{ 'group.add_group'|trans({}, 'navigationui') }}</h2>
35
     <h2>{{ 'group.add_group'|trans({}, 'navigationui') }}</h2>

+ 2 - 2
src/Muzich/HomeBundle/Resources/views/Home/index.html.twig View File

7
   <div id="element_add_box" style="display: none;">
7
   <div id="element_add_box" style="display: none;">
8
     
8
     
9
     <a href="#" id="element_add_close_link">
9
     <a href="#" id="element_add_close_link">
10
-      << {{ 'home.add_element_box.close'|trans({}, 'navigationui') }}
10
+      &lt;&lt; {{ 'home.add_element_box.close'|trans({}, 'navigationui') }}
11
     </a>
11
     </a>
12
     
12
     
13
     <form name="{{ add_form_name }}" action="{{ path('element_add') }}" method="post" {{ form_enctype(add_form) }}>
13
     <form name="{{ add_form_name }}" action="{{ path('element_add') }}" method="post" {{ form_enctype(add_form) }}>
22
   </div>
22
   </div>
23
 
23
 
24
   <a href="#" id="element_add_link">
24
   <a href="#" id="element_add_link">
25
-    {{ 'home.add_element'|trans({}, 'navigationui') }} >>
25
+    {{ 'home.add_element'|trans({}, 'navigationui') }} &gt;&gt;
26
   </a>
26
   </a>
27
 
27
 
28
   <form name="{{ search_form_name }}" action="{{ path('search_elements') }}" method="post" {{ form_enctype(search_form) }}>
28
   <form name="{{ search_form_name }}" action="{{ path('search_elements') }}" method="post" {{ form_enctype(search_form) }}>

+ 2 - 2
src/Muzich/HomeBundle/Resources/views/Show/showGroup.html.twig View File

30
     <div id="element_add_box" style="display: none;">
30
     <div id="element_add_box" style="display: none;">
31
   
31
   
32
       <a href="#" id="element_add_close_link">
32
       <a href="#" id="element_add_close_link">
33
-        << {{ 'group.add_element_box.close'|trans({}, 'navigationui') }}
33
+        &lt;&lt; {{ 'group.add_element_box.close'|trans({}, 'navigationui') }}
34
       </a>
34
       </a>
35
       
35
       
36
       <form name="{{ add_form_name }}" action="{{ path('element_add', {'group_slug' : group.slug}) }}" method="post" {{ form_enctype(add_form) }}>
36
       <form name="{{ add_form_name }}" action="{{ path('element_add', {'group_slug' : group.slug}) }}" method="post" {{ form_enctype(add_form) }}>
43
     </div>
43
     </div>
44
   
44
   
45
     <a href="#" id="element_add_link">
45
     <a href="#" id="element_add_link">
46
-      {{ 'group.add_element'|trans({}, 'navigationui') }} >>
46
+      {{ 'group.add_element'|trans({}, 'navigationui') }} &gt;&gt;
47
     </a>
47
     </a>
48
     <br />
48
     <br />
49
   
49
   

+ 2 - 2
src/Muzich/IndexBundle/Resources/views/Index/index.html.twig View File

10
       {% include "MuzichUserBundle:Security:login.html.twig" %}
10
       {% include "MuzichUserBundle:Security:login.html.twig" %}
11
         
11
         
12
       <a href="#" id="registration_link">
12
       <a href="#" id="registration_link">
13
-        {{ 'registration.display'|trans({}, 'navigationui') }} >>
13
+        {{ 'registration.display'|trans({}, 'navigationui') }} &gt;&gt;
14
       </a>
14
       </a>
15
     </div>
15
     </div>
16
     
16
     
21
       {% include "MuzichUserBundle:Registration:register.html.twig" %}
21
       {% include "MuzichUserBundle:Registration:register.html.twig" %}
22
         
22
         
23
       <a href="#" id="login_link">
23
       <a href="#" id="login_link">
24
-        {{ 'login.display'|trans({}, 'navigationui') }} >>
24
+        &lt;&lt; {{ 'login.display'|trans({}, 'navigationui') }}
25
       </a>
25
       </a>
26
     </div>
26
     </div>
27
     
27