Re: Django : generic view object_list

2007-08-06 Thread Nebojša Đorđević
On 06.08.2007., at 14:12, Marco A. wrote: > I have created a view: > > (r'^$', 'django.views.generic.list_detail.object_list', info_dict), > > In the template I have : > > this is just a test, ! > > {% if error_message %}{{ error_message }}{% > endif %} > > > > {% for User in info_dict %} {%

Django : generic view object_list

2007-08-06 Thread Marco A.
Hi to all , I have created a view: (r'^$', 'django.views.generic.list_detail.object_list', info_dict), In the template I have : this is just a test, ! {% if error_message %}{{ error_message }}{% endif %} {% for User in info_dict %} aaa {{ User.user }} {% endfor %} I cant see ,