Guest User

Untitled

a guest
Feb 20th, 2018
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.64 KB | None | 0 0
  1. mapo@mobile:~/Dev/python/django/battletweets$ cat templates/results.html
  2. {% extends "base.html" %}
  3. {% load battle_extras %}
  4. {% block title %} Pleito! {% endblock %}
  5. {% block content %}
  6. <div id="option1" class="col">
  7. <ul class="hfeed">
  8. <h3 class="vcard"><a href="#">{{ option1 }}</a></h3>
  9. <li class="hentry clear" id="tweet">
  10. <blockquote class="entry-content">
  11. {% for tweet in result1 %}
  12. <div class="tweet">
  13. <a href="{{ tweet.profile }}"><img src="{{ tweet.image }}" align="left"/></a>
  14. {{ tweet.content|twitter_user|safe|linebreaks }}
  15. ...publicado <a href="{{ tweet.link}}">{{ tweet.date }}</a>
  16. </div>
  17. <hr />
  18. {% endfor %}
  19. </blockquote>
  20. </li>
  21. </div>
  22. <div id="option2" class="col">
  23. <ul class="hfeed">
  24. <h2><span class="alt">{{ option1 }}</span></h2>
  25. <h3>{{ option2 }}</h3>
  26. <li class="hentry clear" id="tweet">
  27. <blockquote class="entry-content">
  28. {% for tweet in result2 %}
  29. <div class="tweet">
  30. <a href="{{ tweet.profile }}" ><img src="{{ tweet.image }}" align="left" /></a>
  31. {{ tweet.content|twitter_user|safe|linebreaks }}
  32. ...publicado <a href="{{ tweet.link}}">{{ tweet.date }}</a>
  33. </div>
  34. <hr />
  35. {% endfor %}
  36. </blockquote>
  37. </li>
  38. </div>
  39. {% endblock %}
Add Comment
Please, Sign In to add comment