Skip to content

Commit

Permalink
Fixed #52 -- Fixed TemplateSyntaxError in topic_list templated
Browse files Browse the repository at this point in the history
  • Loading branch information
ellmetha committed Feb 12, 2017
1 parent 18b8874 commit bb58423
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<div class="col-md-2 col-sm-3 hidden-xs topic-last-post-col">{% trans "Last post" %}</div>
</div>
</div>
<div class="panel-body">{% if not force_all_unread and unread_topics is None %}{% get_unread_topics topics request.user as unread_topics %}{% endif %}
<div class="panel-body">{% if not force_all_unread and unread_topics == None %}{% get_unread_topics topics request.user as unread_topics %}{% endif %}
{% for topic in topics %}
<div class="row panel-row">
<div class="col-md-8 col-sm-9 col-xs-11 topic-name">
Expand Down

0 comments on commit bb58423

Please sign in to comment.