Ajoutez des fichiers projet.
This commit is contained in:
16
venv/Lib/site-packages/django/contrib/sites/shortcuts.py
Normal file
16
venv/Lib/site-packages/django/contrib/sites/shortcuts.py
Normal file
@@ -0,0 +1,16 @@
|
||||
from django.apps import apps
|
||||
|
||||
|
||||
def get_current_site(request):
|
||||
"""
|
||||
Check if contrib.sites is installed and return either the current
|
||||
``Site`` object or a ``RequestSite`` object based on the request.
|
||||
"""
|
||||
# Imports are inside the function because its point is to avoid importing
|
||||
# the Site models when django.contrib.sites isn't installed.
|
||||
if apps.is_installed('django.contrib.sites'):
|
||||
from .models import Site
|
||||
return Site.objects.get_current(request)
|
||||
else:
|
||||
from .requests import RequestSite
|
||||
return RequestSite(request)
|
||||
Reference in New Issue
Block a user