views:

26

answers:

1

I'm using AppEngine and django forms passing template_values and using base.html with {% extends "base.html" %} this works well in a testing environment when I have one big form for adding entities.

I'm good in python, good with the datastore, but my html is weak/OLD

I want to have a step by step process for creating datastore entities. In broad strokes, what are some common methods/search-terms I should be using? I've heard that I might be hitting a bit of a limit at some point by using django instead of some other framework - am I already at that point?...can't be?...

A: 

Sounds like you are looking for Django Form Wizard? http://docs.djangoproject.com/en/dev/ref/contrib/formtools/form-wizard/

sunn0