summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobert Martin <rdm@google.com>2013-04-22 17:05:10 -0400
committerRobert Martin <rdm@google.com>2013-04-22 17:30:20 -0400
commit5c4f78cb956f4ff1d18478974129c088cbf69e53 (patch)
tree3ee85b333c6d73d9c772be7034933ce81f97c8bf
parent0c752a2cab9d10487c87fb7b7c0ffb310c987c0b (diff)
downloadaskbot-5c4f78cb956f4ff1d18478974129c088cbf69e53.tar.gz
askbot-5c4f78cb956f4ff1d18478974129c088cbf69e53.tar.bz2
askbot-5c4f78cb956f4ff1d18478974129c088cbf69e53.zip
fix some styles in html.
The main issue was the missing space before the attribute. The rest is just for less important general improvement of the formatting.
-rw-r--r--askbot/templates/question/question_controls.html12
1 files changed, 6 insertions, 6 deletions
diff --git a/askbot/templates/question/question_controls.html b/askbot/templates/question/question_controls.html
index 88ef42d8..ddb40e1d 100644
--- a/askbot/templates/question/question_controls.html
+++ b/askbot/templates/question/question_controls.html
@@ -2,23 +2,23 @@
<script type="text/javascript">
var retagUrl = "{% url retag_question question.id %}";
</script>
-<a id="retag" class="question-retag"href="{% url retag_question question.id %}">{% trans %}retag{% endtrans %}</a>
+<a id="retag" class="question-retag" href="{% url retag_question question.id %}">{% trans %}retag{% endtrans %}</a>
{% if question.offensive_flag_count > 0 %}
- <span
+ <span
id="question-offensive-remove-flag-{{ question.id }}"
class="offensive-flag"
title="{% trans %}report as offensive (i.e containing spam, advertising, malicious text, etc.){% endtrans %}"
>
<a class="question-flag">{% trans %}remove flag{% endtrans %}</a>
</span>
- <span
+ <span
id="question-offensive-flag-{{ question.id }}" class="offensive-flag"
title="{% trans %}report as offensive (i.e containing spam, advertising, malicious text, etc.){% endtrans %}"
>
<a class="question-flag">{% trans %}flag offensive{% endtrans %} ({{ question.offensive_flag_count }})</a>
</span>
{% else %}
- <span
+ <span
id="question-offensive-flag-{{ question.id }}" class="offensive-flag"
title="{% trans %}report as offensive (i.e containing spam, advertising, malicious text, etc.){% endtrans %}"
>
@@ -26,11 +26,11 @@
</span>
{% endif %}
{% if thread.closed %}
- <a class="question-close" href="{% url reopen question.id %}">{% trans %}reopen{% endtrans %}</a>
+ <a class="question-close" href="{% url reopen question.id %}">{% trans %}reopen{% endtrans %}</a>
{% else %}
<a class="question-close" href="{% url close question.id %}">{% trans %}close{% endtrans %}</a>
{% endif %}
-<a
+<a
id="post-{{question.id}}-delete"
class="question-delete"
>{% if question.deleted %}{% trans %}undelete{% endtrans %}{% else %}{% trans %}delete{% endtrans %}{% endif %}</a>