Statistics
| Branch: | Tag: | Revision:

root / settings.d / 00-site.conf @ 5039a44f

History | View | Annotate | Download (1 kB)

1
# -*- coding: utf-8 -*-
2
#
3
# Site-specific Django conf
4
##################################
5

    
6
# Language code for this installation. All choices can be found here:
7
# http://www.i18nguy.com/unicode/language-identifiers.html
8
LANGUAGE_CODE = 'en-us'
9

    
10
# FIXME?
11
SITE_ID = 1
12

    
13
# If you set this to False, Django will make some optimizations so as not
14
# to load the internationalization machinery.
15
USE_I18N = True
16

    
17
# If you set this to False, Django will not format dates, numbers and
18
# calendars according to the current locale
19
USE_L10N = True
20

    
21
# Absolute path to the directory that holds media.
22
# Example: "/home/media/media.lawrence.com/"
23
MEDIA_ROOT = ''
24

    
25
# URL that handles the media served from MEDIA_ROOT. Make sure to use a
26
# trailing slash if there is a path component (optional in other cases).
27
# Examples: "http://media.lawrence.com", "http://example.com/media/"
28
MEDIA_URL = ''
29

    
30
# URL prefix for admin media -- CSS, JavaScript and images. Make sure to use a
31
# trailing slash.
32
# Examples: "http://foo.com/media/", "/media/".
33
ADMIN_MEDIA_PREFIX = '/media/'