You were right Vijay.  I worked this out.  I needed to set type and state 
via the context as follows:

def get_context_data(self, **kwargs):
    context = super(TestFlow, self).get_context_data(**kwargs)
    context.update({'type': self.kwargs['type'], 'state': 
self.kwargs['state']})
    return context
    
... then reference type and state in the url template tag:
<form action="{% url 'create-flow-params' type state %}" method="POST">

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/ea14bda3-1e09-471f-bb2a-aacbc74e8b48%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to