mirror of
https://github.com/telekom-security/tpotce.git
synced 2025-07-02 04:52:11 +00:00
11 lines
260 B
Python
11 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')
|
|
|