summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDejan Noveski <dr.mote@gmail.com>2011-11-23 21:23:30 +0100
committerDejan Noveski <dr.mote@gmail.com>2011-11-23 21:23:30 +0100
commit080bfe4d92a2887eb5c70a834ba1486d1a4f59aa (patch)
treecc23be61ed919e08e48695b902f32322fccf284f
parentb270a36cef307261b0097fae3899948766a1f4e1 (diff)
parent7f2aaab10159fff957301a4332154b415f05f083 (diff)
downloadaskbot-080bfe4d92a2887eb5c70a834ba1486d1a4f59aa.tar.gz
askbot-080bfe4d92a2887eb5c70a834ba1486d1a4f59aa.tar.bz2
askbot-080bfe4d92a2887eb5c70a834ba1486d1a4f59aa.zip
Merge branch 'master' of git://github.com/ASKBOT/askbot-devel
-rw-r--r--askbot/skins/default/media/style/style.less5
-rw-r--r--askbot/views/readers.py2
2 files changed, 6 insertions, 1 deletions
diff --git a/askbot/skins/default/media/style/style.less b/askbot/skins/default/media/style/style.less
index c2d366dd..3d436958 100644
--- a/askbot/skins/default/media/style/style.less
+++ b/askbot/skins/default/media/style/style.less
@@ -627,6 +627,11 @@ body.user-messages {
color: #777;
text-align:center;
}
+
+ /* notify by email box */
+ .notify-sidebar #question-subscribe-sidebar {
+ margin: 7px 0 0 3px;
+ }
}
.statsWidget p{
diff --git a/askbot/views/readers.py b/askbot/views/readers.py
index ec3ca57b..53ef519e 100644
--- a/askbot/views/readers.py
+++ b/askbot/views/readers.py
@@ -372,7 +372,7 @@ def tags(request):#view showing a listing of available tags - plain list
return render_into_skin('tags.html', data, request)
@csrf.csrf_protect
-@cache_page(60 * 5)
+#@cache_page(60 * 5)
def question(request, id):#refactor - long subroutine. display question body, answers and comments
"""view that displays body of the question and
all answers to it