Advertisement
Gamerkin

item.py new

May 2nd, 2024
641
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.44 KB | None | 0 0
  1. {% extends 'base.html' %}
  2. {% block content %}
  3.     <h2>{% block title %} {{ item['title'] }} {% endblock %}</h2>
  4.     <span class="badge badge-primary">{{ item['company'] }}</span>
  5.     {% if item['status']=='выдан' %}
  6.         <span class="badge badge-success"> выдан </span>
  7.     {% else %}
  8.         <span class="badge badge-danger"> не выдан </span>
  9.     {%- endif %}
  10.     <hr>
  11.     <table class="table">
  12.         <thead>
  13.             <tr>
  14.                 <th scope="col">#</th>
  15.                 <th scope="col">Позиция</th>
  16.                 <th scope="col">Единица измерения</th>
  17.                 <th scope="col">Количество</th>
  18.             </tr>
  19.             {% for p in pos %}
  20.             <tr>
  21.                 <th scope="col">#</th>
  22.                 <th scope="col">{{ p['item'] }}</th>
  23.                 <th scope="col">{{ p['type'] }}</th>
  24.                 <th scope="col">{{ p['amount'] }}</th>
  25.             </tr>
  26.             {% endfor %}
  27.         </thead>
  28.         <tbody>
  29.         </tbody>
  30.     </table>
  31.     {% if item['status']=='выдан' %}
  32.         <p><h5>Товары были выданы {{ item['date'] }}</h5></p>
  33.     {% else %}
  34.         <p>
  35.             <form method="POST">
  36.                 <button type="submit" class="btn btn-primarybtn-sm">Выдать товары по накладной</button>
  37.             </form>
  38.         </p>
  39.         {%- endif %}
  40.         </p>
  41. {% endblock %}
  42.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement