Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ietf/meeting/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -5291,7 +5291,7 @@ def approve_proposed_slides(request, slidesubmission_id, num):
if request.POST.get('approve'):
# Ensure that we have a file to approve. The system gets cranky otherwise.
if submission.filename is None or submission.filename == '' or not os.path.isfile(submission.staged_filepath()):
return HttpResponseNotFound("The slides you attempted to approve could not be found. Please disapprove and delete them instead.")
return HttpResponseNotFound("The slides you attempted to approve could not be found. Please decline and delete them instead.")
title = form.cleaned_data['title']
if existing_doc:
doc = Document.objects.get(name=name)
Expand Down
4 changes: 2 additions & 2 deletions ietf/templates/meeting/approve_proposed_slides.html
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,6 @@ <h2>
<button type="submit"
class="btn btn-warning"
name="disapprove"
value="disapprove">Disapprove and Delete</button>
value="disapprove">Decline and Delete</button>
</form>
{% endblock %}
{% endblock %}
6 changes: 3 additions & 3 deletions ietf/templates/meeting/previously_approved_slides.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@ <h1 class="mb-3">
{% if submission.status.slug == 'approved' %}
approved
{% else %}
rejected
declined
{% endif %}
</h1>
<p>
The slides from {{ submission.submitter }} have already been
{% if submission.status.slug == 'approved' %}
approved.
{% else %}
rejected.
declined.
{% endif %}
No further action is needed.
</p>
Expand All @@ -33,4 +33,4 @@ <h1 class="mb-3">
return to this meeting session
</a>.
</p>
{% endblock %}
{% endblock %}
Loading