summaryrefslogtreecommitdiffstats
path: root/askbot/templates
diff options
context:
space:
mode:
authorEvgeny Fadeev <evgeny.fadeev@gmail.com>2013-04-07 05:56:27 -0400
committerEvgeny Fadeev <evgeny.fadeev@gmail.com>2013-04-07 05:56:27 -0400
commitc9b07025ceb5ff50dcae2d845bcdc63efb000d7d (patch)
tree9413dc741a44b032e00dacf9a316255d586d894d /askbot/templates
parent67c5a4bb63a08c3620e6667f4b0c3a3c61cc61ce (diff)
downloadaskbot-c9b07025ceb5ff50dcae2d845bcdc63efb000d7d.tar.gz
askbot-c9b07025ceb5ff50dcae2d845bcdc63efb000d7d.tar.bz2
askbot-c9b07025ceb5ff50dcae2d845bcdc63efb000d7d.zip
css and bug fixes
Diffstat (limited to 'askbot/templates')
-rw-r--r--askbot/templates/question/content.html4
1 files changed, 3 insertions, 1 deletions
diff --git a/askbot/templates/question/content.html b/askbot/templates/question/content.html
index bc08e789..d07c3727 100644
--- a/askbot/templates/question/content.html
+++ b/askbot/templates/question/content.html
@@ -24,15 +24,17 @@
{# buttons below cannot be cached yet #}
{% if user_already_gave_answer %}
+<div style="margin-top: 15px">
<a
class="button submit"
href="{% url "edit_answer" previous_answer.id %}"
>{% trans %}Edit Your Previous Answer{% endtrans %}</a>
<span>{% trans %}(only one answer per question is allowed){% endtrans %}</span>
- <div style="invisible">
+ <div class="invisible">
{# hidden because we still need js from the tinymce widget #}
{% include "question/new_answer_form.html" %}
</div>
+</div>
{% else %}
{% include "question/new_answer_form.html" %}
{% endif %}