* Add new role for support staff. * Move dashboard/support functionality into a new Django app called "support". * Add support view for searching and regenerating certificates. * Refactor certificates views into separate files.
36 lines
1.2 KiB
Python
36 lines
1.2 KiB
Python
"""
|
|
Certificate tool in the student support app.
|
|
"""
|
|
from django.views.generic import View
|
|
from django.utils.decorators import method_decorator
|
|
|
|
from edxmako.shortcuts import render_to_response
|
|
from support.decorators import require_support_permission
|
|
|
|
|
|
class CertificatesSupportView(View):
|
|
"""
|
|
View for viewing and regenerating certificates for users.
|
|
|
|
This is used by the support team to re-issue certificates
|
|
to users if something went wrong during the initial certificate generation,
|
|
such as:
|
|
|
|
* The user's name was spelled incorrectly.
|
|
* The user later earned a higher grade and wants it on his/her certificate and dashboard.
|
|
* The user accidentally received an honor code certificate because his/her
|
|
verification expired before certs were generated.
|
|
|
|
Most of the heavy lifting is performed client-side through API
|
|
calls directly to the certificates app.
|
|
|
|
"""
|
|
|
|
@method_decorator(require_support_permission)
|
|
def get(self, request):
|
|
"""Render the certificates support view. """
|
|
context = {
|
|
"user_query": request.GET.get("query", "")
|
|
}
|
|
return render_to_response("support/certificates.html", context)
|