Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save taufiqibrahim/07ae015818ae0d2cb949bae1980d6216 to your computer and use it in GitHub Desktop.
Save taufiqibrahim/07ae015818ae0d2cb949bae1980d6216 to your computer and use it in GitHub Desktop.
from django.contrib import admin
from dockerman.models import Container
@admin.register(Container)
class ContainerAdmin(admin.ModelAdmin):
list_display = ('container_host', 'container_port', 'container_default_message')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment