Support for inline items in question of type "przyporzadkuj"
authorAleksander Łukasz <aleksander.lukasz@nowoczesnapolska.org.pl>
Fri, 8 Nov 2013 10:24:36 +0000 (11:24 +0100)
committerAleksander Łukasz <aleksander.lukasz@nowoczesnapolska.org.pl>
Wed, 15 Jan 2014 10:18:57 +0000 (11:18 +0100)
wtem/templates/wtem/exercises/edumed_przyporzadkuj.html
wtem/templates/wtem/main.html

index 5ad558e..f4eac19 100644 (file)
@@ -32,7 +32,7 @@
             <p class="paragraph">{{exercise.items_name|capfirst}}:</p>
         </div>
          
-        <ul class="lista punkt subject" data-target="kategorie">
+        <ul class="lista punkt subject {% if exercise.items_inline %}wtem-items-inline{% endif %}" data-target="kategorie">
             {% for item in exercise.items %}
                 {% comment %}
                 data-solution set to single bogus value only to indicate that this piece has no multiple solutions, not used otherwise (see: is_multiple in edumed.coffee). 
index 3473d3b..952b3e9 100644 (file)
@@ -26,6 +26,9 @@
         text-align: center;
         font-weight: bold;
     }
+    .wtem-items-inline li {
+        display: inline-block;
+    }
 
 </style>