transactions.html 686 B

12345678910111213141516
  1. {% extends 'SharixAdmin/index.html' %}
  2. {% load render_table from django_tables2 %}
  3. {% load i18n %}
  4. {% block contenthome %}
  5. <h1 >{{ title }}</h1>
  6. <h3 >{% trans 'User: ' %}{{ request.user.username }}</h3>
  7. <h3 >{% blocktrans %}Balance: {{ wallet.balance }} points{% endblocktrans %}</h3>
  8. <form class="d-flex" method="post">
  9. {% csrf_token %}
  10. <input class="form-control me-2" name="search" type="search" placeholder="{% trans 'Search' %}" aria-label="Search">
  11. <button class="btn btn-outline-success" type="submit">{% trans 'Search' %}</button>
  12. </form>
  13. {% comment %} {% render_table table %} {% endcomment %}
  14. {% endblock contenthome %}