mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-17 05:22:16 +00:00
66 lines
2.3 KiB
HTML
66 lines
2.3 KiB
HTML
{% extends 'base_assets.html' %}
|
|
{% block title %}Asset List{% endblock %}
|
|
{% load paginator from filters %}
|
|
{% load widget_tweaks %}
|
|
|
|
{% block content %}
|
|
|
|
<div class="page-header">
|
|
<h1 class="text-center">Asset List</h1>
|
|
</div>
|
|
|
|
<form id="asset-search-form" method="get" class="form-inline pull-right">
|
|
<div class="input-group pull-right" style="width: auto;">
|
|
{% render_field form.query|add_class:'form-control' placeholder='Search by Asset ID/Desc/Serial' style="width: 250px"%}
|
|
<label for="query" class="sr-only">Asset ID/Description/Serial Number:</label>
|
|
<span class="input-group-btn"><button type="submit" class="btn btn-default">Search</button></span>
|
|
</div>
|
|
<br>
|
|
<div style="margin-top: 1em;" class="pull-right">
|
|
<div id="category-group" class="form-group">
|
|
<label for="category" class="sr-only">Category</label>
|
|
{% render_field form.category|attr:'multiple'|add_class:'form-control selectpicker' data-none-selected-text="Categories" data-header="Categories" data-actions-box="true" %}
|
|
</div>
|
|
<div id="status-group" class="form-group">
|
|
<label for="status" class="sr-only">Status</label>
|
|
{% render_field form.status|attr:'multiple'|add_class:'form-control selectpicker' data-none-selected-text="Statuses" data-header="Statuses" data-actions-box="true" %}
|
|
</div>
|
|
<!---TODO: Auto filter whenever an option is selected, instead of using a button -->
|
|
<button id="filter-submit" type="submit" class="btn btn-default">Filter</button>
|
|
</div>
|
|
</form>
|
|
|
|
<table class="table">
|
|
<thead>
|
|
<tr>
|
|
<th>Asset ID</th>
|
|
<th>Description</th>
|
|
<th>Category</th>
|
|
<th>Status</th>
|
|
<th class="hidden-xs">Quick Links</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody id="asset_table_body">
|
|
{% include 'partials/asset_list_table_body.html' %}
|
|
</tbody>
|
|
</table>
|
|
|
|
{% if is_paginated %}
|
|
<div class="text-center">
|
|
{% paginator %}
|
|
</div>
|
|
{% endif %}
|
|
|
|
{% endblock %}
|
|
|
|
{% load static %}
|
|
{% block css %}
|
|
<link rel="stylesheet" href="{% static "css/bootstrap-select.min.css" %}"/>
|
|
<link rel="stylesheet" href="{% static "css/ajax-bootstrap-select.css" %}"/>
|
|
{% endblock %}
|
|
|
|
{% block preload_js %}
|
|
<script src="{% static "js/bootstrap-select.js" %}"></script>
|
|
<script src="{% static "js/ajax-bootstrap-select.js" %}"></script>
|
|
{% endblock %}
|