from django.contrib import admin
from .models import Target
@admin.register(Target)
class TargetAdmin(admin.ModelAdmin):
pass