Skip to content

Instantly share code, notes, and snippets.

@brunomichetti
Created July 11, 2022 17:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save brunomichetti/32ace4d6aa61f50e1ccf32b18c307f4b to your computer and use it in GitHub Desktop.
Save brunomichetti/32ace4d6aa61f50e1ccf32b18c307f4b to your computer and use it in GitHub Desktop.
from django.contrib import admin
from example_app.models import Example
class ExampleAdmin(admin.ModelAdmin):
fields = ('image',)
admin.site.register(Example, ExampleAdmin)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment