Advertisement
urasayanoglu

my_loans_form_outside_loop.html

Dec 23rd, 2022
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.01 KB | Source Code | 0 0
  1. {% extends "board_game_club_apps/base.html" %}
  2. {% load bootstrap4 %}
  3.  
  4. {% block page_header %}
  5.   <h1>My Loans</h1>
  6. {% endblock page_header %}
  7.  
  8. {% block content %}
  9.   <ul>
  10.     <form action="{% url 'board_game_club_apps:return_loan' loan.id %}" method="post" class="form">
  11.     {% for loan in loans %}
  12.       <div class="card mb-3">
  13.         <h5 class="card-header">
  14.           Game Loned: {{ loan.game_loaned }} <br>
  15.           Loan Date: {{ loan.loan_date|date:'d-m-Y D H:i'  }} <br>
  16.           Return Date: {{ loan.return_time|date:'d-m-Y D H:i' }}
  17.             {% csrf_token %}
  18.             {% buttons %}
  19.               <button name="submit" class="btn btn-primary">Return Game</button>
  20.               <button type="submit" class="btn btn-primary" name="{{ loan.id }} value="{{ loan.id }}"">Return Game 1</button>
  21.             {% endbuttons %}
  22.         </h5>
  23.       </div>
  24.     {% empty %}
  25.       <li><h5>Unfortunately, there is not any loaned game.</h5></li>
  26.     {% endfor %}
  27.     </form>
  28.   </ul>
  29. {% endblock content %}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement