No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

admin.py 169B

123456789
  1. from .base import get_response
  2. def index_admin(request):
  3. return get_response('admin/admin.html')
  4. def admin(request):
  5. return get_response('admin/admin.html')