Created
August 24, 2019 19:19
-
-
Save taufiqibrahim/07ae015818ae0d2cb949bae1980d6216 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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