59 lines
3.0 KiB
HTML
59 lines
3.0 KiB
HTML
{% extends "base.html" %}
|
|
{% load i18n static %}
|
|
|
|
{% block title %}{{ _("Expenses") }}{% endblock title %}
|
|
|
|
{% block content %}
|
|
<div class="row">
|
|
<div class="d-flex justify-content-between">
|
|
|
|
<h3 class="mb-2">{% trans "Services" %}</h3>
|
|
<a href="{% url 'item_service_create' %}" class="btn btn-sm btn-phoenix-primary ">{% trans "Add Service" %}</a>
|
|
</div>
|
|
|
|
|
|
<div class="table-responsive scrollbar transition">
|
|
<table class="table table-sm fs-9 mb-0 border-translucent">
|
|
<thead>
|
|
<tr>
|
|
<th class="sort white-space-nowrap align-middle" scope="col">{% trans "Item Number" %}</th>
|
|
<th class="sort white-space-nowrap align-middle" scope="col">{% trans "Name" %}</th>
|
|
<th class="sort white-space-nowrap align-middle" scope="col">{% trans "Unit of Measure" %}</th>
|
|
<th class="sort white-space-nowrap align-middle" scope="col">{% trans "Taxable" %}</th>
|
|
<th class="sort white-space-nowrap align-middle" scope="col">{% trans "Account" %}</th>
|
|
<th class="sort white-space-nowrap align-middle" scope="col">{% trans "Action" %}</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody class="list">
|
|
{% for service in services %}
|
|
<tr class="hover-actions-trigger btn-reveal-trigger position-static">
|
|
<td class="align-middle product white-space-nowrap py-0">{{ service.pk }}</td>
|
|
<td class="align-middle product white-space-nowrap">{{ service.get_local_name }}</td>
|
|
<td class="align-middle product white-space-nowrap">{{ service.uom }}</td>
|
|
<td class="align-middle product white-space-nowrap">
|
|
{% if service.taxable %}
|
|
Yes
|
|
{% else %}
|
|
No
|
|
{% endif %}
|
|
</td>
|
|
<td class="align-middle product white-space-nowrap">{{ service.item.cogs_account }}</td>
|
|
<td class="text-center">
|
|
<a href="{% url 'item_service_update' service.pk %}"
|
|
class="btn btn-sm btn-phoenix-success">
|
|
{% trans "Update" %}
|
|
</a>
|
|
</td>
|
|
</tr>
|
|
{% empty %}
|
|
<tr>
|
|
<td colspan="6" class="text-center">{% trans "No Invoice Found" %}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
<div class="d-flex justify-content-center">
|
|
</div>
|
|
</div>
|
|
{% endblock %} |