I'm pretty newbie to world of python, mongodb and django. (coming from java ee world)
I have task to represent some collection from mongodb as html table in django. Table should is editable, so rows, columns and fields can be edited, added, removed. Also some of it can be set: bold, italic etc.
So, editing of data in that table should not have effect on data in collection in mongodb, it is ment to be saved once user is satisfied with it.
I've setup django and mongodb, with pymongo module. Also spotted this project: http://www.datatables.net/development/server-side/django
Can somebody advise me how to pull this off (wich modules/software can be leveraged to speed this up)?