Moved the template accounting/accounts/index.html to accounting/account_list.html to follow the default template name in the accounting application.

This commit is contained in:
2020-08-07 21:28:28 +08:00
parent 4342f1e34e
commit 1d9a8a0401
2 changed files with 0 additions and 1 deletions

View File

@ -0,0 +1,90 @@
{% extends "base.html" %}
{% comment %}
The Mia Accounting Application
index.html: The template for the accounts
Copyright (c) 2020 imacat.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
Author: imacat@mail.imacat.idv.tw (imacat)
First written: 2020/7/1
{% endcomment %}
{% load static %}
{% load i18n %}
{% load mia_core %}
{% load accounting %}
{% block settings %}
{% trans "Accounts" context "Accounting" as text %}
{% setvar "title" text %}
{% setvar "use_datatables" True %}
{% endblock %}
{% block content %}
<div class="btn-group btn-actions">
<a class="btn btn-primary" role="button" href="{% url "accounting:accounts.create" %}">
<i class="fas fa-plus"></i>
{{ _("New")|force_escape }}
</a>
{% trans "Accounts" context "Accounting" as text %}
{% with current_report_icon="fas fa-list-ol" current_report_title=text %}
{% include "accounting/include/report-chooser.html" %}
{% endwith %}
</div>
{% if object_list %}
<table id="accounts" class="table table-striped table-hover">
<thead>
<tr>
<th scope="col">{{ _("Code")|force_escape }}</th>
<th scope="col">{{ _("Title")|force_escape }}</th>
<th class="actions" scope="col">{{ _("View")|force_escape }}</th>
</tr>
</thead>
<tbody>
{% for object in object_list %}
<tr class="{% if object.is_parent_and_in_use %} table-danger {% endif %}">
<td>{{ object.code }}</td>
<td>
{{ object.title }}
{% if object.is_parent_and_in_use %}
<span class="badge badge-danger badge-pill">
{{ _("Parent Account In Use")|force_escape }}
</span>
{% endif %}
</td>
<td class="actions">
<a href="{% url "accounting:accounts.show" object %}" class="btn btn-info" role="button">
<i class="fas fa-eye"></i>
<span class="d-none d-sm-inline">{{ _("View")|force_escape }}</span>
</a>
</td>
</tr>
{% endfor %}
</tbody>
</table>
{% else %}
<p>{{ _("There is currently no data.")|force_escape }}</p>
{% endif %}
<script type="text/javascript">
$(document).ready(function() {
$('#accounts').DataTable({
"ordering": false,
});
});
</script>
{% endblock %}