mikhailemv

Untitled

Jun 13th, 2023
747
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.73 KB | None | 0 0
  1. {% extends 'users/profile/accounts/accounts_base.html' %}
  2.  
  3. {% block content %}
  4.   <h1>Переводы</h1>
  5.  
  6.   <form method="post">
  7.     {% csrf_token %}
  8.     <input type="hidden"
  9.           name="csrfmiddlewaretoken"
  10.           value="bN0bvEjFZugXrrSz6yE8VujfFxeSYZBi6Fq2pEXWScK4xp7MphAPL1LW4kJPhxN8">
  11.  
  12.     <p>
  13.       <label for="id_from_account">From account:</label>
  14.       <select name="from_account"
  15.              required=""
  16.              id="id_from_account">
  17.  
  18.         {% for account in accounts %}
  19.           <option value="{{ account.id }}">{{ account.name }}</option>
  20.         {% endfor %}
  21.  
  22.       </select>
  23.     </p>
  24.  
  25.     <p>
  26.       <label for="id_to_account">To account:</label>
  27.       <select name="to_account"
  28.              required=""
  29.              id="id_to_account">
  30.  
  31.         {% for account in accounts %}
  32.           <option value="{{ account.id }}">{{ account.name }}</option>
  33.         {% endfor %}
  34.  
  35.       </select>
  36.     </p>
  37.  
  38.     <p>
  39.       <label for="id_amount">Amount:</label>
  40.       <input type="number"
  41.             name="amount"
  42.             step="0.01"
  43.             required=""
  44.             id="id_amount">
  45.     </p>
  46.  
  47.     <p>
  48.       <label for="id_date">Date:</label>
  49.       <input type="date"
  50.             name="date"
  51.             value="12.06.2023"
  52.             required=""
  53.             id="id_date">
  54.  
  55.       <input type="hidden"
  56.             name="initial-date"
  57.             value="2023-06-12 18:38:51+00:00"
  58.             id="initial-id_date">
  59.     </p>
  60.  
  61.     <p>
  62.       <label for="id_comment">Comment:</label>
  63.       <input type="text"
  64.             name="comment"
  65.             maxlength="200"
  66.             id="id_comment">
  67.     </p>
  68.  
  69.     <button>Перевести</button>
  70.   </form>
  71.  
  72. {% endblock %}
Advertisement
Add Comment
Please, Sign In to add comment