colbyj / bride-of-frankensystem

A framework that allows for the development of custom online experiments and surveys.
GNU Lesser General Public License v3.0
9 stars 5 forks source link

Create questionnaires from HTML forms #23

Open colbyj opened 9 months ago

colbyj commented 9 months ago

These would need to generate a database table from the HTML DOM, and POSTing the form would need to write to the database.

Maybe it would be useful to have the ability to execute custom Python code in response to a form submission -- but maybe that's something to save for another issue.

colbyj commented 3 months ago

I think with my recent change this is no longer necessary.

colbyj commented 3 months ago

Oops, closed wrong issue. I still think this is worth doing.

colbyj commented 2 months ago

Basically, parse the HTML for 'name' attributes. Define a DB table based on those, and handle the form submission dynamically based on the list of 'name's.