31 lines
1.6 KiB
HTML
31 lines
1.6 KiB
HTML
{% extends 'develop/template.html' %}
|
|
{% block subcontent %}
|
|
<form action="/develop/create/2" method="post" enctype="multipart/form-data">
|
|
<div class="mb-3">
|
|
<input class="form-control" type="file" id="file" name="file" required>
|
|
</div>
|
|
<div class="mb-3">
|
|
<input class="form-control" type="text" id="name" name="name" placeholder="Name" required>
|
|
</div>
|
|
<input type="hidden" name="csrf_token" value="{{ csrf_token() }}">
|
|
{% if GroupIdContext != None %}<input type="hidden" name="groupIdContext" value="{{GroupIdContext}}">{%endif%}
|
|
<button type="submit" class="btn btn-success btn-sm w-100">Create T-Shirt</button>
|
|
</form>
|
|
<div class="mt-2">
|
|
{% for tshirt in UserClothing: %}
|
|
<div class="w-100 m-1 p-1 d-flex">
|
|
<img src="/Thumbs/Asset.ashx?assetId={{tshirt.id}}&x=100&y=100" class="rounded" height="100px" width="100px">
|
|
<div class="ms-2">
|
|
<a class="text-white text-decoration-none" href="/catalog/{{tshirt.id}}/"><h5 class="m-0">{{tshirt.name}}</h5></a>
|
|
<p class="text-secondary m-0" style="font-size:13px;">Sales: <span class="text-white">{{tshirt.sale_count}}</span></p>
|
|
</div>
|
|
<div class="ms-auto mt-auto mb-auto">
|
|
<a class="btn btn-sm border-primary text-white" href="/develop/{{tshirt.id}}/edit">Edit</a>
|
|
</div>
|
|
</div>
|
|
{%endfor%}
|
|
{% if len(UserClothing.items) == 0: %}
|
|
<h5 class="text-center mt-3 mb-3">No items found</h5>
|
|
{%endif%}
|
|
</div>
|
|
{% endblock %} |