SciPost Code Repository

Skip to content
Snippets Groups Projects
Commit 5591ce8e authored by Jean-Sébastien Caux's avatar Jean-Sébastien Caux
Browse files

Prepare upgrade to Django 1.10: = to == in templates

parent f5ed9552
No related branches found
No related tags found
No related merge requests found
......@@ -53,7 +53,7 @@
{% for reply in author_replies %}
{% if reply.in_reply_to_comment %}
{% if reply.in_reply_to_comment.id = comment.id %}
{% if reply.in_reply_to_comment.id == comment.id %}
<div class="row">
<div class="col-1"></div>
<hr style="border-style: dotted;" />
......
......@@ -154,7 +154,7 @@
{% for reply in author_replies %}
{% if reply.in_reply_to_report %}
{% if reply.in_reply_to_report.id = report.id %}
{% if reply.in_reply_to_report.id == report.id %}
<div class="row">
<div class="col-1"></div>
<hr style="border-style: dotted;" />
......@@ -229,7 +229,7 @@
{% for reply in author_replies %}
{% if reply.in_reply_to_report %}
{% if reply.in_reply_to_report.id = report.id %}
{% if reply.in_reply_to_report.id == report.id %}
<div class="row">
<div class="col-1"></div>
<hr style="border-style: dotted;" />
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment