1👍
Look for docs on django-nonrel. I don’t know of much great documentation, but you can probably find docs pretty easily on Google.
The latest repo is here: https://github.com/django-nonrel
0👍
I am not sure if Django is your best solution. It is a very good framework but I don’t use it anymore for 2 main reasons:
- It is bigger than other, and therefore heavier than you need.
- It is not well supported in App Engine, so you have to use an old version (norel)
If you are a beginner, I would recommend you look this open source project that has a lot of amazing features well implemented where you can learn how they do it.
That project is using the last technology supported in Google App Engine and has a lot of contributors.
- [Answer]-South not detecting new model file in model folder
- [Answer]-Page redirect to next page
- [Answer]-User Input Restrictions in Django generated forms
0👍
Read up on django-nonrel’s documentation if you haven’t already. I remember having some trouble setting it up, but I’m afraid I can’t recall what the exact problem was (you might need to run your dev server with dev_appserver.py .
instead of manage.py runserver
). Once I got it up and running, though, it worked like a charm.
- [Answer]-Drop down menu from Django database
- [Answer]-Allow Django required form field to pass validation when left blank?
- [Answer]-List like parameter in django template. Is it possible?
- [Answer]-Django lib to create xls-files over 65k rows?