You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
xmrauctions/web/templates/items/list_items.html

85 lines
2.8 KiB
HTML

5 years ago
{% extends 'base.html' %}
{% block content %}
<section id="main" class="wrapper">
<div class="container">
<header class="major">
<h2>View Items</h2>
5 years ago
{% if request.user.is_authenticated %}
<a href="{% url 'list_items' %}?mine=true" class="button">Your Items</a>
<a href="{% url 'list_items' %}?{{ request.GET.urlencode }}&avail=true" class="button alt">Available Items</a>
<a href="{% url 'list_items' %}" class="button alt">All Items</a>
{% endif %}
<form method="GET" enctype="multipart/form-data" action="">
{% for field in search_form %}
<div class="fieldWrapper">
{{ field.errors }}
{{ field.label_tag }} {{ field }}
{% if field.help_text %}
<p class="help">{{ field.help_text|safe }}</p>
{% endif %}
</div>
{% endfor %}
</form>
5 years ago
</header>
<div id="item-search"></div>
{% if items %}
5 years ago
<table class="table">
<tr>
<th>ID</th>
<th>Available</th>
5 years ago
<th>Name</th>
<th>List Date</th>
<th>Whereabouts</th>
5 years ago
<th>Asking Price (XMR)</th>
<th>Bids</th>
5 years ago
</tr>
{% for item in items %}
<tr class="{% if item.owner == request.user %}item-mine{% endif %}">
5 years ago
<td>#{{ item.id }}</td>
<td style="text-align:center;">
{% if item.available %}
<i class="fa fa-thumbs-up" style="color:green;"></i>
{% else %}
<i class="fa fa-thumbs-down" style="color:red;"></i>
{% endif %}
</td>
5 years ago
<td><a href="{% url 'get_item' item.id %}">{{ item.name }}</a></td>
<td>{{ item.list_date | date:"d M, Y H:i:s" }}</td>
<td><a href="https://duckduckgo.com/?q={{ item.whereabouts }}" target="_blank">{{ item.whereabouts }}</a></td>
5 years ago
<td>{{ item.ask_price_xmr }}</td>
<td>{{ item.bids.all | length }}</td>
5 years ago
</tr>
{% endfor %}
</table>
{% else %}
<p>No results from the search. Try again!</p>
{% endif %}
5 years ago
</div>
</section>
{% if items.has_other_pages %}
<ul class="pagination">
{% if items.has_previous %}
<li><a href="?{{ request.GET.urlencode }}&page={{ items.previous_page_number }}">&laquo;</a></li>
5 years ago
{% else %}
<li class="disabled"><span>&laquo;</span></li>
{% endif %}
{% for i in items.paginator.page_range %}
{% if items.number == i %}
<li class="active"><span>{{ i }} <span class="sr-only"></span></span></li>
{% else %}
<li><a href="?{{ request.GET.urlencode }}&page={{ i }}">{{ i }}</a></li>
5 years ago
{% endif %}
{% endfor %}
{% if items.has_next %}
<li><a href="?{{ request.GET.urlencode}}&page={{ items.next_page_number }}">&raquo;</a></li>
5 years ago
{% else %}
<li class="disabled"><span>&raquo;</span></li>
{% endif %}
</ul>
{% endif %}
{% endblock %}