* 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.
35 lines
992 B
Python
35 lines
992 B
Python
"""
|
|
Index view for the support app.
|
|
"""
|
|
from django.core.urlresolvers import reverse_lazy
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
from edxmako.shortcuts import render_to_response
|
|
from support.decorators import require_support_permission
|
|
|
|
|
|
SUPPORT_INDEX_URLS = [
|
|
{
|
|
"url": reverse_lazy("support:certificates"),
|
|
"name": _("Certificates"),
|
|
"description": _("View and regenerate certificates."),
|
|
},
|
|
|
|
# DEPRECATION WARNING: We can remove this end-point
|
|
# once shoppingcart has been replaced by the E-Commerce service.
|
|
{
|
|
"url": reverse_lazy("support:refund"),
|
|
"name": _("Manual Refund"),
|
|
"description": _("Track refunds issued directly through CyberSource."),
|
|
},
|
|
]
|
|
|
|
|
|
@require_support_permission
|
|
def index(request): # pylint: disable=unused-argument
|
|
"""Render the support index view. """
|
|
context = {
|
|
"urls": SUPPORT_INDEX_URLS
|
|
}
|
|
return render_to_response("support/index.html", context)
|