Advertisement
Guest User

Untitled

a guest
Oct 11th, 2016
179
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. {% load staticfiles %}
  2. <!DOCTYPE html>
  3.  
  4. <html lang="en">
  5. <head>
  6. <link rel="stylesheet" type="text/css" href="{% static 'style.css' %}" />
  7. <title>TreasureGram</title>
  8. </head>
  9. <body>
  10. <h1>TreasureGram</h1>
  11. {% for treasure in treasures %}
  12. <p>{{ treasure.name }}</p>
  13. {% if treasure.value > 0 %}
  14. <p>{{ treasure.value }}
  15. {% else %}
  16. <p>Unknown</p>
  17. {% endif %}
  18. {% endfor %}
  19. </body>
  20. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement