Guest User

Untitled

a guest
Apr 21st, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. dict = {"projects": Project.objects.all(), "errors": Error.objects.all(), "programmers": Developer.objects.all()}
  2.  
  3. {% for item in projects %}
  4. {{ print(projects.name) }}
  5. {% endfor %}
  6.  
  7. {% for item in errors %}
  8. {{ print(errors.name) }}
  9. {% endfor %}
  10.  
  11. <table>
  12. <tr>
  13. <td>{{ "Первый элемент projects" }}</td>
  14. <td>{{ "Первый элемент errors" }}</td>
  15. ...
  16. </tr>
  17. <tr>
  18. <td>{{ "Второй элемент projects" }}</td>
  19. <td>{{ "Второй элемент errors" }}</td>
  20. ...
  21. </tr>
  22. ...
  23. </table>
Add Comment
Please, Sign In to add comment