Dude,
On Friday, 27 May 2016 15:27:32 UTC+5:30, meInvent bbird wrote:
-- You need to make the following changes.
1. you need to pass a dictionary as the context in your views
return render(request, 'approval.html', {'posts': posts})
2. the prefer the posts to be list of dict
change
posts = {}
...............................
LL = [(1,eachbracket)]
posts.update(LL)
to
posts = []
..........................................
posts.append(eachbracket)
3. you templates syntax is wrong correct it, use {{ }}
{% block content %}
<table>
{% for post in posts %}
<tr>
<td>
{{ post.project }}
</td>
<td>
{{ post.company }}
</td>
<td>
{{ post.name }}
</td>
<td>
{{ post.businessType }}
</td>
<td>
{{ post.userType }}
</td>
</tr>
{% endfor %}
</table>
{% endblock %}
On Friday, 27 May 2016 15:27:32 UTC+5:30, meInvent bbird wrote:
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+unsubscribe@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/bae31a2e-d8b8-4c1b-b8d6-7091bfa0927f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
No comments:
Post a Comment