Merge from origin repo

This commit is contained in:
Tony Zhu
2014-10-20 14:12:40 -04:00
146 changed files with 17012 additions and 9189 deletions

View File

@ -14,10 +14,15 @@ through templates/helpdesk/help_api.html.
import json
from django import forms
from django.contrib.auth import authenticate
from django.contrib.auth.models import User
try:
from django.contrib.auth import get_user_model
User = get_user_model()
except ImportError:
from django.contrib.auth.models import User
from django.http import HttpResponse
from django.shortcuts import render_to_response
from django.template import loader, Context
import simplejson
from django.views.decorators.csrf import csrf_exempt
try: