mirror of
https://github.com/telekom-security/tpotce.git
synced 2025-07-05 14:32:11 +00:00
12 lines
260 B
Python
12 lines
260 B
Python
![]() |
from django.contrib import admin
|
||
|
from .models import HoneyPotServer
|
||
|
|
||
|
# Register your models here.
|
||
|
|
||
|
|
||
|
@admin.register(HoneyPotServer)
|
||
|
class HoneyPotServerAdmin(admin.ModelAdmin):
|
||
|
ordering = ['id']
|
||
|
list_display = ('name', 'ip', 'isActive', 'last_input')
|
||
|
|