| escaline/settings.example.py |
| 21 | 21 | DATABASE_HOST = '' # Set to empty string for localhost. Not used with sqlite3. |
| 22 | 22 | DATABASE_PORT = '' # Set to empty string for default. Not used with sqlite3. |
| 23 | 23 | |
| 24 | CACHE_BACKEND = 'locmem:///?timeout=86400' |
| 25 | |
| 24 | 26 | # Local time zone for this installation. Choices can be found here: |
| 25 | 27 | # http://en.wikipedia.org/wiki/List_of_tz_zones_by_name |
| 26 | 28 | # although not all choices may be available on all operating systems. |
| ... | ... | |
| 72 | 74 | # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates". |
| 73 | 75 | # Always use forward slashes, even on Windows. |
| 74 | 76 | # Don't forget to use absolute paths, not relative paths. |
| 77 | '/<ici le path absolut vers le dossier templates>/', |
| 75 | 78 | ) |
| 76 | 79 | |
| 77 | 80 | INSTALLED_APPS = ( |
| ... | ... | |
| 79 | 82 | 'django.contrib.contenttypes', |
| 80 | 83 | 'django.contrib.sessions', |
| 81 | 84 | 'django.contrib.admin', |
| 82 | | 'escaline.c', # Command manager |
| 83 | | #'escaline.n', # News manager |
| 85 | 'escaline.main', # Escaline main views |
| 86 | 'escaline.commands', # Command manager |
| 87 | 'escaline.tickets', # Tickets manager |
| 88 | 'escaline.news', # News manager |
| 89 | 'escaline.docs', # Docs manager |
| 90 | ) |
| 91 | |
| 84 | 92 | ) |