Fixed another instance of '=' being used for comparison in a template.

- Legacy-Id: 12708
This commit is contained in:
Henrik Levkowetz 2017-01-19 21:21:10 +00:00
parent 4c86cfc63d
commit fa60671148
2 changed files with 2 additions and 2 deletions

View file

@ -733,7 +733,7 @@ def document_bibtex(request, name, rev=None):
rfc=rfc,
latest_revision=latest_revision),
content_type="text/plain; charset=utf-8",
request=request)
)
def document_writeup(request, name):

View file

@ -134,7 +134,7 @@
{% if not snapshot and user|has_role:"Area Director,Secretariat" %}
{% if request.user|has_role:"Secretariat" %}
{% if doc.get_state_slug == 'appr-reqnopub-pend' or doc.get_state_slug = 'appr-noprob-pend' %}
{% if doc.get_state_slug == 'appr-reqnopub-pend' or doc.get_state_slug == 'appr-noprob-pend' %}
<a class="btn btn-primary" href="{% url "conflict_review_approve" name=doc.name %}">Approve conflict review</a>
{% endif %}
{% endif %}