mirror of
https://gitea.mueller.network/extern/django-helpdesk.git
synced 2024-12-26 08:39:08 +01:00
Fix a few formatting errors introduced in last commit.
This commit is contained in:
parent
8f466966f5
commit
953dab3978
44
README.rst
44
README.rst
@ -63,37 +63,37 @@ ensure the latest changes are in use.
|
||||
|
||||
You can continue to the 'Initial Configuration' area, if needed.
|
||||
|
||||
DJANGO 1.2.x and latest version of django-helpdesk
|
||||
Django 1.2.x and latest version of django-helpdesk
|
||||
==================================================
|
||||
|
||||
If you are running django 1.2.x then you will need to install django-staticfiles
|
||||
If you are running Django 1.2.x then you will need to install django-staticfiles
|
||||
(http://pypi.python.org/pypi/django-staticfiles/) and add the following to your
|
||||
existing settings.py and urls.py files:
|
||||
existing `settings.py` and `urls.py` files:
|
||||
|
||||
settings.py:
|
||||
MEDIA_ROOT = '/var/www/media/'
|
||||
MEDIA_URL = '/media/'
|
||||
STATIC_ROOT = '/var/www/static/'
|
||||
STATIC_URL = '/static/'
|
||||
settings.py::
|
||||
MEDIA_ROOT = '/var/www/media/'
|
||||
MEDIA_URL = '/media/'
|
||||
STATIC_ROOT = '/var/www/static/'
|
||||
STATIC_URL = '/static/'
|
||||
|
||||
INSTALLED_APPS = (
|
||||
'staticfiles',
|
||||
)
|
||||
INSTALLED_APPS = (
|
||||
'staticfiles',
|
||||
)
|
||||
|
||||
TEMPLATE_CONTEXT_PROCESSORS = (
|
||||
'staticfiles.context_processors.static',
|
||||
)
|
||||
TEMPLATE_CONTEXT_PROCESSORS = (
|
||||
'staticfiles.context_processors.static',
|
||||
)
|
||||
|
||||
urls.py:
|
||||
from staticfiles.urls import staticfiles_urlpatterns
|
||||
urlpatterns += staticfiles_urlpatterns()
|
||||
urls.py::
|
||||
from staticfiles.urls import staticfiles_urlpatterns
|
||||
urlpatterns += staticfiles_urlpatterns()
|
||||
|
||||
then do:
|
||||
$ cd /var/www
|
||||
$ mkdir static
|
||||
$ cd static
|
||||
$ ln -sf /path/to/helpdesk/static/helpdesk/ helpdesk
|
||||
Once those changes are made, run the following commands to take a copy of the static files::
|
||||
|
||||
$ cd /var/www
|
||||
$ mkdir static
|
||||
$ cd static
|
||||
$ ln -sf /path/to/helpdesk/static/helpdesk/ helpdesk
|
||||
|
||||
Installation
|
||||
============
|
||||
|
Loading…
Reference in New Issue
Block a user