django-ajaxutils
django-ajaxutils copied to clipboard
Ajax requests for Ponies™
Results
1
django-ajaxutils issues
Sort by
recently updated
recently updated
newest added
support fo basic authentication via decorator Implementation proposal: ``` python import base64 from django.http import HttpResponse from django.contrib.auth import authenticate, login def basicauth_required(realm=""): "Based on http://djangosnippets.org/snippets/243/" def external_wrapper(view): def wrapper(request,...