on an inexpensive Raspberry Pi. Save your machine energy!

Open Source

It's all on GitHub! Join us by contributing to make this project even better. Don't be shy to be a contributor!

kodo - Gogs: Go Git Service

No Description

admin.py 677B

    # -*- coding: utf-8 -*- from django.contrib import admin from staff.models import StaffDeleteClerkSaleSubmitLogInfo, StaffDeleteConsumerSubmitLogInfo class StaffDeleteClerkSaleSubmitLogInfoAdmin(admin.ModelAdmin): list_display = ('admin_id', 'log_pk', 'model_name', 'code', 'status', 'created_at', 'updated_at') class StaffDeleteConsumerSubmitLogInfoAdmin(admin.ModelAdmin): list_display = ('admin_id', 'log_pk', 'model_name', 'code', 'status', 'created_at', 'updated_at') admin.site.register(StaffDeleteClerkSaleSubmitLogInfo, StaffDeleteClerkSaleSubmitLogInfoAdmin) admin.site.register(StaffDeleteConsumerSubmitLogInfo, StaffDeleteConsumerSubmitLogInfoAdmin)