Merge branch 'master' of ssh://git.onelab.eu/git/myslice
authorYasin <mohammed-yasin.rahman@lip6.fr>
Tue, 24 Sep 2013 09:55:00 +0000 (11:55 +0200)
committerYasin <mohammed-yasin.rahman@lip6.fr>
Tue, 24 Sep 2013 09:55:00 +0000 (11:55 +0200)
myslice/settings.py
views/static/css/layout-unfold2.css
views/templates/base.html
views/templates/layout-unfold1.html
views/templates/layout-unfold2.html

index 3a39ab9..93d044c 100644 (file)
@@ -175,8 +175,6 @@ INSTALLED_APPS = (
     'plugins',
     # views - more or less stable 
     'views',
-    # temporary
-    'trash',
     # managing database migrations
     'south', 
     # Uncomment the next line to enable the admin:
@@ -184,6 +182,8 @@ INSTALLED_APPS = (
     # Uncomment the next line to enable admin documentation:
     # 'django.contrib.admindocs',
     'portal',
+    # temporary - not packaged
+    'trash',
     'sample',
 # DEPRECATED #    'django.contrib.formtools',
 # DEPRECATED ##    'crispy_forms',
index 9346643..9e06837 100644 (file)
@@ -3,5 +3,5 @@
 }
 #unfold2-margin {
     padding: 10;
-#    background-color: #fff2ff;
+/*    background-color: #fff2ff; */
 }
index ca7a969..3ee9ba2 100644 (file)
 {% insert_str prelude "css/manifold.css" %}
 <body>
 {% block container %}
-<div id="container">
   {% block topmenu %}
   {% include 'widget-topmenu.html' %}
   {% endblock topmenu %}
-{% include 'messages.html' %}
-<div class="container-fluid">
-  <div class="row-fluid">
-
+{% include 'messages-transient.html' %}
+<div class="container"> <div class="row">
    {% block base_content%}{% endblock %}
-
-  </div><!--raw-fluid-->
-</div><!--container-fluid-->
+</div></div>
 {% endblock container %}
 </body>
 </html>
index 851de44..002a023 100644 (file)
@@ -1,9 +1,9 @@
 {% extends "base.html" %}
 
 {% block base_content %}
-    <div id="unfold1-main" class="span12 columns">
+    <div id="unfold1-main" class="col-md-12 columns">
       {% block unfold1_main %}
       "The main content area (define block 'unfold1_main')"
       {% endblock unfold1_main %}
-    </div><!--span12-->
+    </div><!--col-md-12-->
 {% endblock %}
index 4754fa1..1d092c2 100644 (file)
@@ -1,14 +1,14 @@
 {% extends "base.html" %}
 
 {% block base_content %}
-    <div id="unfold2-main" class="span9 columns">
+    <div id="unfold2-main" class="col-md-9 columns">
       {% block unfold2_main %}
       "The main content area (define block 'unfold2_main')"
       {% endblock unfold2_main %}
-    </div><!--span9-->
-    <div id='unfold2-margin' class='span3'>
+    </div><!--col-md-9-->
+    <div id='unfold2-margin' class='col-md-3'>
       {% block unfold2_margin %}
       "The related content area (define block 'related_main')"
       {% endblock unfold2_margin %}
-    </div><!--span3-->
+    </div><!--col-md-3-->
 {% endblock %}