mirror of
https://github.com/yweber/lodel2.git
synced 2025-11-12 17:09:16 +01:00
6 lines
No EOL
182 B
Python
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) |