Skip to content
Snippets Groups Projects
Commit cf992c12 authored by Renaud Le Gac's avatar Renaud Le Gac
Browse files

Add the viewedit tools.

Polish documentation.
parent 1c65ca09
No related branches found
No related tags found
No related merge requests found
......@@ -12,5 +12,6 @@ def index():
Return the path of the javascript associate to it.
"""
form = request.get_vars.name
return dict(js=form)
response.view = "forms.html"
table = request.get_vars.table
return dict(js=table)
""" viewedit.py
A controller to view and edit table contents
$Id$
"""
def index():
"""Instanciate the viewedit/index.html page
Decode the request form in the url: /application/viewedit?table=xxx
Return the path of the javascript associate to it.
"""
response.view = "viewedit.html"
table = request.get_vars.table
return dict(js=table)
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment