Truncate questions on question list.
authorRadek Czajka <radekczajka@nowoczesnapolska.org.pl>
Wed, 26 Mar 2014 09:21:50 +0000 (10:21 +0100)
committerRadek Czajka <radekczajka@nowoczesnapolska.org.pl>
Wed, 26 Mar 2014 09:21:50 +0000 (10:21 +0100)
prawokultury/static/css/base.css
prawokultury/static/css/header.css
questions/templates/questions/question_list.html

index 156fdda..b5481a8 100644 (file)
@@ -1,6 +1,6 @@
 @import url(http://fonts.googleapis.com/css?family=Lato:400,700,400italic);
 body {
 @import url(http://fonts.googleapis.com/css?family=Lato:400,700,400italic);
 body {
-  font-family: "Lato", sans-serif;
+  font-family: 'Lato', sans-serif;
   font-size: .625em;
   background-color: #edece7;
   background-image: url("/static/img/bg.png");
   font-size: .625em;
   background-color: #edece7;
   background-image: url("/static/img/bg.png");
@@ -20,7 +20,7 @@ img {
   border: 0; }
 
 h1 {
   border: 0; }
 
 h1 {
-  margin: 0 0 0.5em 0;
+  margin: 0 0 .5em 0;
   color: #01519a;
   font-size: 2em; }
 
   color: #01519a;
   font-size: 2em; }
 
@@ -29,7 +29,7 @@ h2 {
   color: #01519a; }
 
 .warning {
   color: #01519a; }
 
 .warning {
-  border: 1px solid #dddddd;
+  border: 1px solid #ddd;
   padding: 1em;
   background: #ffd;
   font-size: 1.3em; }
   padding: 1em;
   background: #ffd;
   font-size: 1.3em; }
index 0020c13..2f37f06 100644 (file)
@@ -10,7 +10,7 @@
   .org-fnp span, .org-trust span {
     color: #888; }
   .org-fnp img, .org-trust img {
   .org-fnp span, .org-trust span {
     color: #888; }
   .org-fnp img, .org-trust img {
-    margin-left: -0.3em;
+    margin-left: -.3em;
     margin-top: 1em; }
 
 .org-fnp {
     margin-top: 1em; }
 
 .org-fnp {
index 88bd7c2..46e757c 100755 (executable)
@@ -48,7 +48,7 @@
 
 <ul class='questions'>
 {% for question in object_list %}
 
 <ul class='questions'>
 {% for question in object_list %}
-    <li><a href="{{ question.get_absolute_url }}">{{ question }}</a>
+    <li><a href="{{ question.get_absolute_url }}">{{ question|truncatewords:50 }}</a>
     </li>
 {% endfor %}
 </ul>
     </li>
 {% endfor %}
 </ul>