我創建了一個用戶模型爲我的Django應用程序 class User(Model):
"""
The Authentication model. This contains the user type. Both Customer and
Business models refer back to this model.
"""
email = E
我有一個將移動用戶重定向到移動網站的中間件,但是如果URL是/property/,我想引導他們訪問整個站點。移動重定向正在工作,但不排除/property/。 這是當前的中間件。 middleware.py # Adapted from http://djangosnippets.org/snippets/2001/
import re
from django.conf import sett