2024-01-28 11:59:04 +00:00
|
|
|
<div class="navbar">
|
|
|
|
<nav>
|
2024-02-06 19:30:08 +00:00
|
|
|
<a href="{{url_for('main.index')}}"><img src="{{url_for('static', filename='assets/img/wmgzon.bmp')}}" id="logo" class="not-required" alt="WMGZON Logo"></a>
|
2024-01-28 11:59:04 +00:00
|
|
|
<form action="" method="get">
|
|
|
|
<input type="text" name="search" placeholder="Find your favourite products" class="search-bar">
|
|
|
|
<input type="submit" class="search-button">
|
|
|
|
</form>
|
2024-01-29 22:35:46 +00:00
|
|
|
<div class="vert-align">
|
2024-02-06 19:30:08 +00:00
|
|
|
<a href="{{url_for('main.index')}}"><img src="{{url_for('static', filename='assets/img/cart.bmp')}}" id="cart" alt="Shopping Cart"></a>
|
2024-01-29 22:35:46 +00:00
|
|
|
{% if user != None: %}
|
2024-02-06 19:30:08 +00:00
|
|
|
<a href="{{url_for('main.users.logout')}}">Welcome, {{ user.username }}</a>
|
2024-01-29 22:35:46 +00:00
|
|
|
{% else %}
|
2024-02-06 19:30:08 +00:00
|
|
|
<a href="{{url_for('main.users.display_login')}}">Login/Signup</a>
|
2024-01-29 22:35:46 +00:00
|
|
|
{% endif %}
|
|
|
|
</div>
|
2024-01-28 11:59:04 +00:00
|
|
|
</nav>
|
|
|
|
|
|
|
|
<centre>
|
|
|
|
{% if user != None and user.role == "Seller" %}
|
|
|
|
<div class="categories">
|
|
|
|
{# List all available seller tools #}
|
2024-02-06 19:30:08 +00:00
|
|
|
<a href="{{url_for('main.products.display_add_product')}}" class="category">Create Products</a>
|
|
|
|
<a href="{{url_for('main.products.display_own_products')}}" class="category">View My Products</a>
|
|
|
|
<a href="{{url_for('main.stats.index')}}" class="category">View Seller Stats</a>
|
2024-01-28 11:59:04 +00:00
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
<div class="categories">
|
|
|
|
{# List all categories and ensure the selected one is highlighted #}
|
|
|
|
{% for c in categories %}
|
|
|
|
{% if category == c.name %}
|
2024-02-06 19:30:08 +00:00
|
|
|
<a style="color: cyan" href="{{url_for('main.products.category', category=c.name)}}" class="category">{{c.name}}</a>
|
2024-01-28 11:59:04 +00:00
|
|
|
{% else %}
|
2024-02-06 19:30:08 +00:00
|
|
|
<a href="{{url_for('main.products.category', category=c.name)}}" class="category">{{c.name}}</a>
|
2024-01-28 11:59:04 +00:00
|
|
|
{% endif %}
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
</centre>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{% with messages = get_flashed_messages(with_categories=true)%}
|
|
|
|
{% if messages %}
|
|
|
|
{% for category, message in messages %}
|
|
|
|
<label>
|
|
|
|
<input type="checkbox" class="alertCheckbox" autocomplete="off" />
|
|
|
|
<div class="alert {{category}}">
|
|
|
|
<span class="alertClose">X</span>
|
|
|
|
<span class="alertText">{{message}}
|
|
|
|
<br class="clear"/></span>
|
|
|
|
</div>
|
|
|
|
</label>
|
|
|
|
{% endfor%}
|
|
|
|
{% endif %}
|
|
|
|
{% endwith %}
|