transactions.html 621 B

1234567891011121314
  1. {% extends 'SharixAdmin/index.html' %}
  2. {% load render_table from django_tables2 %}
  3. {% block contenthome %}
  4. <h1 >{{ title }}</h1>
  5. <h3 >Ползователь: {{ request.user.username }}</h3>
  6. <h3 >Баланс: {{ wallet.balance }} баллов</h3>
  7. <form class="d-flex" method="post">
  8. {% csrf_token %}
  9. <input class="form-control me-2" name="search" type="search" placeholder="Search" aria-label="Search">
  10. <button class="btn btn-outline-success" type="submit">Search</button>
  11. </form>
  12. {% comment %} {% render_table table %} {% endcomment %}
  13. {% endblock contenthome %}