Ei kuvausta

mystore.html 2.3KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {% extends "front/base.html" %}
  2. {% load static %}
  3. {% load crispy_forms_tags %}
  4. {% load django_bootstrap_breadcrumbs %}
  5. {% block header %}
  6. {{ storeForm.media }}
  7. {% endblock %}
  8. {% block content %}
  9. <h1>My Store</h1>
  10. <!--
  11. <form method=post>
  12. {% csrf_token %}
  13. <input type='text' name='name' class='form-control' placeholder='Store Name'/>
  14. <input type='submit' class='btn btn-primary' name='createStore' value="Create Store" />
  15. </form>
  16. <hr> -->
  17. <div class="d-flex align-items-start">
  18. <div class="nav flex-column nav-pills me-3 col-md-3 col-lg-2" id="v-pills-tab" role="tablist" aria-orientation="vertical">
  19. <a class="nav-link {{ profile|yesno:"active," }}" id="v-pills-profile-tab" href="{% url "fruit:profile" %}" type="button" role="tab" aria-controls="v-pills-home" aria-selected="true">Profile</a>
  20. <a class="nav-link {{ mystore|yesno:"active," }}" id="v-pills-home-tab" href="{% url "fruit:mystore" %}" type="button" role="tab" aria-controls="v-pills-home" aria-selected="true">Store Info</a>
  21. <a class="nav-link {{ product|yesno:"active," }}" id="v-pills-profile-tab" href="{% url "fruit:product_index" %}" type="button" role="tab" aria-controls="v-pills-profile" aria-selected="false">Products</a>
  22. <a class="nav-link" id="v-pills-messages-tab" href="{% url "fruit:inbox_index" %}" type="button" role="tab" aria-controls="v-pills-messages" aria-selected="false">Inbox</a>
  23. <a class="nav-link {{ sale_active|yesno:"active," }}" id="v-pills-settings-tab" href="{% url "fruit:sale_index" %}" type="button" role="tab" aria-controls="v-pills-settings" aria-selected="false">Saled Items</a>
  24. <a class="nav-link" id="v-pills-vendor-tab" href="{% url "fruit:vendor_index" %}" type="button" role="tab" aria-controls="v-pills-vendor" aria-selected="false">Vendors</a>
  25. <a class="nav-link" id="v-pills-vendororder-tab" href="{% url "fruit:vendororder_index" %}" type="button" role="tab" aria-controls="v-pills-vendororder" aria-selected="false">Vendor Order</a>
  26. </div>
  27. <div class="tab-content p-3 col-md-9 col-lg-10" id="v-pills-tabContent">
  28. {% block breadcrumbs %}
  29. {% clear_breadcrumbs %}
  30. {% breadcrumb "My Store" "fruit:mystore" %}
  31. {% endblock %}
  32. {% render_breadcrumbs %}
  33. {% block store_main %}
  34. {% endblock %}
  35. </div>
  36. </div>
  37. {% endblock %}