@@ -8,9 +15,21 @@
| # |
- Название группы |
- Адресс группы |
- Количество абонентов |
+
+
+ Название группы
+
+ {% if order_by == 'title' %}{% endif %}
+ |
+
+
+ Адресс группы
+
+ {% if order_by == 'address' %}{% endif %}
+ |
+
+ Количество абонентов
+ |
Do |
@@ -18,7 +37,7 @@
{% for gr in groups %}
| {{ gr.id }} |
- {{ gr.title }} |
+ {{ gr.title }} |
{{ gr.address }} |
{{ gr.usercount }} |
@@ -38,10 +57,13 @@
|
- |
+ |
Создать группу
+
+ Действия абонентов
+
|
diff --git a/templates/abonapp/invoiceForPayment.html b/templates/abonapp/invoiceForPayment.html
index 4977dbe..9a3ec9f 100644
--- a/templates/abonapp/invoiceForPayment.html
+++ b/templates/abonapp/invoiceForPayment.html
@@ -1,5 +1,6 @@
{% extends request.is_ajax|yesno:'nullcont.htm,abonapp/ext.htm' %}
{% block content %}
+
-{% endblock %}
\ No newline at end of file
+{% endblock %}
diff --git a/templates/abonapp/log.html b/templates/abonapp/log.html
index 1b0d395..a85f634 100644
--- a/templates/abonapp/log.html
+++ b/templates/abonapp/log.html
@@ -1,6 +1,12 @@
{% extends 'base.html' %}
{% block main %}
+
+
+ - Группы абонентов
+ - История действий абонентов
+
+
История абонента
diff --git a/templates/abonapp/payHistory.html b/templates/abonapp/payHistory.html
index e0bb560..c80579a 100644
--- a/templates/abonapp/payHistory.html
+++ b/templates/abonapp/payHistory.html
@@ -13,7 +13,7 @@
{% for ph in pay_history %}
- | {{ ph.abon.username }} |
+ {{ ph.abon.username }} |
{{ ph.amount }} |
{{ ph.date|date:'d F Y, H:i:s' }} |
{{ ph.author.username }} |
diff --git a/templates/abonapp/peoples.html b/templates/abonapp/peoples.html
index 1aeb176..282d0cc 100644
--- a/templates/abonapp/peoples.html
+++ b/templates/abonapp/peoples.html
@@ -1,16 +1,44 @@
{% extends 'base.html' %}
{% block main %}
+
+
+
+ - Группы абонентов
+ - {{ abon_group.title }}
+
+
+
Народ в выбранной группе
| # |
- Абонент |
- IP Адрес |
- ФИО |
- Балланс |
+
+
+ Абонент
+
+ {% if order_by == 'username' %}{% endif %}
+ |
+
+
+ IP Адрес
+
+ {% if order_by == 'ip_address' %}{% endif %}
+ |
+
+
+ ФИО
+
+ {% if order_by == 'fio' %}{% endif %}
+ |
+
+
+ Балланс
+
+ {% if order_by == 'ballance' %}{% endif %}
+ |
Телефон |
Тариф |
Do |
@@ -38,7 +66,7 @@
{% empty %}
|
- Ещё нет абонентов, добавить
+ Ещё нет абонентов, добавить
|
{% endfor %}
@@ -46,7 +74,7 @@
|
-
+
Добавить абонента
|
diff --git a/templates/abonapp/services.html b/templates/abonapp/services.html
index 10b1fc1..b8b79c2 100644
--- a/templates/abonapp/services.html
+++ b/templates/abonapp/services.html
@@ -26,10 +26,10 @@
{{ trf.tariff.time_of_action }} |
{% if trf.id != active_abontariff_id %}
-
+
-
+
@@ -38,20 +38,20 @@
|
{% else %}
-
+
Завершить
|
{% endif %}
{% empty %}
- | Нет подключённых абоненту услуг, купить |
+ | Нет подключённых абоненту услуг, купить |
{% endfor %}
|
-
+
Купить услугу
|