Tuesday, May 31, 2016

Re: why blank page when load a list or dictionary into web to display a list

really really thanks

after tried, it works.

On Saturday, May 28, 2016 at 10:22:01 PM UTC+8, Akhil Lawrence wrote:
Dude,

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 %}
     
    

--
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/1753c0f9-de42-407b-83f5-1b0e0cac234f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

No comments:

Post a Comment