Browse Source

Ajout description groupe + css

bastien 13 years ago
parent
commit
6a150e6cfd

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

@@ -24,6 +24,10 @@
24 24
   </div>
25 25
     
26 26
   <h2>{{ group.name }}</h2>
27
+  
28
+  <p class="group_description">
29
+    {{ group.description }}
30
+  </p>
27 31
 
28 32
   {% include "MuzichCoreBundle:Tag:tagsList.show.html.twig" with {
29 33
     'object_id'   : group.id,

+ 1 - 1
web/bundles/muzichcore/css/main.css View File

@@ -30,7 +30,7 @@
30 30
 }
31 31
 #container h2
32 32
 {
33
-  margin-top: 5px;
33
+  margin-top: 0px;
34 34
   margin-bottom: 5px;
35 35
   font-size: 1.7em;
36 36
   

+ 6 - 0
web/bundles/muzichhome/css/home.css View File

@@ -84,4 +84,10 @@ div.select_network a.active
84 84
 div.tags_prompt
85 85
 {
86 86
   margin-top: 5px;
87
+}
88
+
89
+p.group_description
90
+{
91
+  font-size: 90%;
92
+  text-indent: 15px;
87 93
 }