Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.38 KB | None | 0 0
  1. |── core
  2. | |── static
  3. | | |── core
  4. | | | └── styles.css
  5. | |
  6. | |── templates
  7. | | |── core
  8. | | | |── base.html
  9. | | | └─── ...
  10. |
  11. |── coupons
  12. | |── templates
  13. | | |── coupons
  14. | | | └── coupon_list.html
  15.  
  16. <!DOCTYPE html>
  17. <html lang="en">
  18. <head>
  19. <meta charset="UTF-8">
  20. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  21. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  22.  
  23. {% load static %}
  24. <link rel="stylesheet" href="{% static 'core/css/styles.css' %}">
  25. <title>WebsiteOfQuotas</title>
  26. </head>
  27. <body>
  28. <nav>
  29. <ul>
  30. <li><a href="{% url 'home' %}">Home</a></li>
  31. <li><a href="">About</a></li>
  32. <li><a href="{% url 'coupons:list' %}">Coupons</a></li>
  33. </ul>
  34. </nav>
  35. {% block content %}{% endblock %}
  36. <footer>
  37. ¡Somos el equipo de WebsiteOfCoupons, para mas informacion contactanos por Gmail en supportWOC@gmail.com!
  38. </footer>
  39. </body>
  40. </html>
  41.  
  42. {% extends 'core/base.html' %}
  43. {% block content %}
  44. <main>
  45. {% for coupon in coupon_list %}
  46. <div class='column'>
  47. <h2>{{ coupon.title }}</h2>
  48. <p>{{ coupon.price }}</p>
  49. <p>{{ coupon.description }}</p>
  50. </div>
  51. {% endfor %}
  52. </main>
  53. {% endblock %}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement