fnp
/
django-pagination.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Allow ignored get vars.
[django-pagination.git]
/
fnp_django_pagination
/
tests
/
settings.py
1
DATABASES = {
2
'default': {
3
'NAME': ':memory:',
4
'ENGINE': 'django.db.backends.sqlite3',
5
}
6
}
7
8
SECRET_KEY = 'fake-key'
9
10
INSTALLED_APPS = (
11
'fnp_django_pagination',
12
)
13
14
TEMPLATES = [
15
{
16
'BACKEND': 'django.template.backends.django.DjangoTemplates',
17
'APP_DIRS': True,
18
},
19
]