Re: creating a button using dgango

2012-09-22 Thread Ndlovu
Thanks Nik it working :) On Tuesday, September 18, 2012 10:40:59 PM UTC+2, Nikolas Stevenson-Molnar wrote: > > Does this get at what you want to accomplish? > https://docs.djangoproject.com/en/1.1/ref/contrib/formtools/form-wizard/ > > _Nik > > On 9/18/2012 1:00 PM, Ndlovu wrote: > > How do I

Re: creating a button using dgango

2012-09-18 Thread Nikolas Stevenson-Molnar
Does this get at what you want to accomplish? https://docs.djangoproject.com/en/1.1/ref/contrib/formtools/form-wizard/ _Nik On 9/18/2012 1:00 PM, Ndlovu wrote: > How do I add a simple button, that does fuction loading another > *.html page. Basically a basic next button. > > My forms class looks

creating a button using dgango

2012-09-18 Thread Ndlovu
How do I add a simple button, that does fuction loading another *.html page. Basically a basic next button. My forms class looks like: forms.py: # -*- coding: utf-8 -*- from django import forms class ButtonForm(forms.Form): #what do put here as for the button ) The views class: