Add render date to context
This commit is contained in:
parent
6f8aa6ee09
commit
b242657df7
1 changed files with 3 additions and 1 deletions
|
@ -1,11 +1,13 @@
|
||||||
from md_pdf.consts import TEMPLATES_DIR, STATIC_DIR
|
from md_pdf.consts import TEMPLATES_DIR, STATIC_DIR
|
||||||
from word_count import word_count
|
from word_count import word_count
|
||||||
from md_pdf.utils import get_plain_text
|
from md_pdf.utils import get_plain_text
|
||||||
|
from datetime import datetime
|
||||||
|
|
||||||
|
|
||||||
EXTRA_CONTEXT = {
|
EXTRA_CONTEXT = {
|
||||||
'templates_dir': TEMPLATES_DIR,
|
'templates_dir': TEMPLATES_DIR,
|
||||||
'static_dir': STATIC_DIR
|
'static_dir': STATIC_DIR,
|
||||||
|
'date': datetime.now()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Reference in a new issue