mirror of
https://github.com/nanoy42/coope
synced 2024-11-26 06:32:27 +00:00
Modifs
This commit is contained in:
parent
db0df75a1b
commit
aa1c948367
2 changed files with 2 additions and 2 deletions
|
@ -124,6 +124,6 @@ STATIC_ROOT = os.path.join(BASE_DIR, 'static')
|
||||||
|
|
||||||
LOGIN_URL = '/users/login'
|
LOGIN_URL = '/users/login'
|
||||||
|
|
||||||
MEDIA_ROOT = 'mediafiles/'
|
MEDIA_ROOT = os.path.join(BASE_DIR, 'mediafiles')
|
||||||
MEDIA_URL = '/media/'
|
MEDIA_URL = '/media/'
|
||||||
|
|
||||||
|
|
|
@ -8,7 +8,7 @@ from django.template.loader import get_template
|
||||||
from django_tex.exceptions import TexError
|
from django_tex.exceptions import TexError
|
||||||
from django.conf import settings
|
from django.conf import settings
|
||||||
|
|
||||||
DEFAULT_INTERPRETER = 'lualatex'
|
DEFAULT_INTERPRETER = 'pdflatex'
|
||||||
|
|
||||||
def run_tex(source):
|
def run_tex(source):
|
||||||
"""
|
"""
|
||||||
|
|
Loading…
Reference in a new issue