|
@@ -165,7 +165,7 @@ class ServiceTypeTable(tables.Table):
|
|
|
class CommentsTable(tables.Table):
|
|
|
|
|
|
id = tables.Column( attrs={"td":{"width":"50px"}})
|
|
|
- codename = tables.LinkColumn('service_type/edit/', verbose_name='Услуга', orderable=False, text = lambda record: record.codename,
|
|
|
+ name_comment = tables.LinkColumn('service_type/edit/', verbose_name='Комментарий', orderable=False, text = lambda record: record.codename,
|
|
|
args=[tables.A('pk')], attrs= {"a": {"style": "pointer-events: none;"}, 'th':{'scope':'col'}, "td":{"class":"name_col"}})
|
|
|
description = tables.LinkColumn('service_type/edit/', orderable=False, verbose_name='Описание', text = lambda record: record.description,
|
|
|
args=[tables.A('pk')], attrs= {"a": {"style": "pointer-events: none;"}, 'th':{'scope':'col'}, "td":{"class":"description_col"}})
|
|
@@ -176,16 +176,14 @@ class CommentsTable(tables.Table):
|
|
|
|
|
|
|
|
|
class Meta:
|
|
|
- model = ServiceType
|
|
|
+ model = Comments
|
|
|
attrs = {"class": "table table-layout-fixed text-start"}
|
|
|
- exclude = ('requirements',
|
|
|
- 'price_type','status','ticket_status',
|
|
|
- 'id_metaservice', 'link_agreement',
|
|
|
- 'is_global', 'is_visible', 'caption')
|
|
|
+ exclude = ('ticket_status',
|
|
|
+ 'is_global', 'is_visible')
|
|
|
|
|
|
class ServiceTable(tables.Table):
|
|
|
|
|
|
- id = tables.Column(verbose_name=_('ID'), attrs={"td":{"width":"5%"}})
|
|
|
+ id = tables.Column(attrs={"td":{"width":"5%"}})
|
|
|
servicetype_id = tables.Column(verbose_name=_('Description of the service'), accessor = 'servicetype_id.caption',
|
|
|
attrs={'th':{'scope':'col'}, "td":{"width":"20%"}})
|
|
|
|
|
@@ -196,13 +194,18 @@ class ServiceTable(tables.Table):
|
|
|
price_km = tables.Column(verbose_name=_('Cost km.'), attrs={'th':{'scope':'col'}, "td":{"width":"20%"}})
|
|
|
price_min = tables.Column(verbose_name=_('Cost min.'), attrs={'th':{'scope':'col'}, "td":{"width":"20%"}})
|
|
|
price_amount = tables.Column(verbose_name=_('Cost of service'), attrs={'th':{'scope':'col'}, "td":{"width":"20%"}})
|
|
|
+
|
|
|
+ id_provider = tables.Column(verbose_name=_('Организатор'))
|
|
|
+ name_service = tables.Column(verbose_name=_('Экскурсия'))
|
|
|
+ rating = tables.Column(verbose_name=_('Рейтинг'))
|
|
|
+ price = tables.Column(verbose_name=_('Цена'))
|
|
|
|
|
|
class Meta:
|
|
|
model = Service
|
|
|
attrs = {"class": "table table-layout-fixed"}
|
|
|
- exclude = ('resource_id', 'requirements', 'id_provider',
|
|
|
- 'id_metaservice', 'price_alg', 'service_status', 'ticket_status',
|
|
|
- 'is_global', 'is_visible')
|
|
|
+ exclude = ('resource_id','servicetype_id', 'requirements',
|
|
|
+ 'id_metaservice', 'price_alg','price_km', 'price_min', 'price_amount', 'service_status', 'ticket_status',
|
|
|
+ 'is_global', 'is_visible', 'place_start', 'place_end', 'movement_way', 'discription', 'status')
|
|
|
|
|
|
def render_check(self, value, record):
|
|
|
if record.status == 'active':
|
|
@@ -214,9 +217,21 @@ class UserInfoTable(tables.Table):
|
|
|
|
|
|
id = tables.Column(verbose_name=_('ID'), attrs={"td":{"width":"5%"}})
|
|
|
|
|
|
+ deletee = tables.LinkColumn('user_information/delete/', verbose_name='', orderable=False, text = "D",
|
|
|
+ args=[tables.A('pk')], attrs={'th':{'scope':'col'}, "td":{"class":"delete_col"}})
|
|
|
+
|
|
|
class Meta:
|
|
|
model = get_user_model()
|
|
|
attrs = {"class": "table table-layout-fixed"}
|
|
|
- exclude = ('password', 'phone_number',
|
|
|
+ exclude = ('password', 'phone_number', "avatar",
|
|
|
'last_login','is_staff', 'is_superuser',
|
|
|
- 'date_joined')
|
|
|
+ 'date_joined')
|
|
|
+
|
|
|
+class PaymentTable(tables.Table):
|
|
|
+
|
|
|
+ class Meta:
|
|
|
+ model = Payment
|
|
|
+ attrs = {"class": "table table-layout-fixed"}
|
|
|
+ exclude = ('legal_name', 'repr_id',
|
|
|
+ 'requirements','status', 'ticket_status',
|
|
|
+ 'bank_name', 'is_global', 'is_visible', 'id_metaservice')
|