Fixed another instance of '=' being used for comparison in a template.
- Legacy-Id: 12708
This commit is contained in:
parent
4c86cfc63d
commit
fa60671148
|
@ -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):
|
||||
|
|
|
@ -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 %}
|
||||
|
|
Loading…
Reference in a new issue