1
0
Fork 0
mirror of https://github.com/yweber/lodel2.git synced 2025-11-12 17:09:16 +01:00
lodel2_mirror/plugins/webui/interface/controllers/document.py
2016-06-29 16:19:01 +02:00

6 lines
No EOL
182 B
Python

from .base import get_response
def show_document(request):
template_vars = {'id': request.url_args['id']}
return get_response('documents/show.html', tpl_vars=template_vars)