Advertisement
Nicolas_Darksoul

shops.html/pizzas(app)/templates/pizzas

Dec 4th, 2021
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.29 KB | None | 0 0
  1. {%extends 'pizzas/base.html'%}
  2.  
  3.  
  4.  
  5. {%block content%}
  6.  
  7. <p>available pizza:</p>
  8.  
  9. <ul>
  10.     {%for shop in shops%}
  11.  
  12.      <li>
  13.         <a href="{% url 'pizzas:pizza' pizza.id %}">{{shop}}</a></li>
  14.  
  15.     {%empty%}
  16.  
  17.      <li>currently there is no pizza available</li>
  18.     {%endfor%}
  19. </ul>
  20.  
  21. {%endblock content%}
  22.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement