Skip to content

Commit fa60671

Browse files
committed
Fixed another instance of '=' being used for comparison in a template.
- Legacy-Id: 12708
1 parent 4c86cfc commit fa60671

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

ietf/doc/views_doc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -733,7 +733,7 @@ def document_bibtex(request, name, rev=None):
733733
rfc=rfc,
734734
latest_revision=latest_revision),
735735
content_type="text/plain; charset=utf-8",
736-
request=request)
736+
)
737737

738738

739739
def document_writeup(request, name):

ietf/templates/doc/document_conflict_review.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ <h2>Conflict review<br><small>{{ conflictdoc.name }}-{{ conflictdoc.rev }}</smal
134134

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

0 commit comments

Comments
 (0)