|
|
@@ -7,12 +7,12 @@ from logs.models import MchInfoDecryptLogInfo, MchInfoEncryptLogInfo, MchLogInfo
|
7
|
7
|
|
8
|
8
|
|
9
|
9
|
class MchInfoEncryptLogInfoAdmin(ReadOnlyModelAdmin, admin.ModelAdmin):
|
10
|
|
- list_display = ('plaintext', 'alg', 'ciphertext', 'brand_pk', 'model_pk', 'distributor_pk', 'sn', 'code', 'code_url', 'operator_id', 'status', 'created_at', 'updated_at')
|
|
10
|
+ list_display = ('plaintext', 'alg', 'ciphertext', 'brand_pk', 'model_pk', 'distributor_pk', 'sn', 'application_id', 'code', 'code_url', 'operator_id', 'status', 'created_at', 'updated_at')
|
11
|
11
|
list_filter = ('alg', 'brand_pk', 'model_pk', 'distributor_pk', 'operator_id', 'status')
|
12
|
12
|
|
13
|
13
|
|
14
|
14
|
class MchInfoDecryptLogInfoAdmin(ReadOnlyModelAdmin, admin.ModelAdmin):
|
15
|
|
- list_display = ('ciphertext', 'brand_pk', 'model_pk', 'distributor_pk', 'sn', 'decrypt_count', 'status', 'created_at', 'updated_at')
|
|
15
|
+ list_display = ('ciphertext', 'brand_pk', 'model_pk', 'distributor_pk', 'sn', 'application_id', 'code', 'code_url', 'decrypt_count', 'status', 'created_at', 'updated_at')
|
16
|
16
|
list_filter = ('brand_pk', 'model_pk', 'distributor_pk', 'status')
|
17
|
17
|
|
18
|
18
|
|