Test zu Fake geändert, weil Namensproblem
Dieser Commit ist enthalten in:
@@ -63,7 +63,7 @@ def prepare_license_export_data(licenses):
|
||||
format_datetime_for_export(license[8]), # Created At
|
||||
license[9], # Device Limit
|
||||
license[10] or 0, # Current Devices
|
||||
'Test' if license[11] else 'Full' # Is Test License
|
||||
'Fake' if license[11] else 'Full' # Is Test License
|
||||
])
|
||||
return export_data
|
||||
|
||||
@@ -141,7 +141,7 @@ def create_batch_export(licenses):
|
||||
'Gültig von': format_datetime_for_export(license.get('valid_from')),
|
||||
'Gültig bis': format_datetime_for_export(license.get('valid_until')),
|
||||
'Status': 'Aktiv' if license.get('is_active', True) else 'Inaktiv',
|
||||
'Test-Lizenz': 'Ja' if license.get('is_test', False) else 'Nein'
|
||||
'Fake-Lizenz': 'Ja' if license.get('is_test', False) else 'Nein'
|
||||
})
|
||||
|
||||
df = pd.DataFrame(export_data)
|
||||
|
||||
In neuem Issue referenzieren
Einen Benutzer sperren