Skip to content

Instantly share code, notes, and snippets.

@odhiambo123
Created October 28, 2023 18:13
Show Gist options
  • Save odhiambo123/10a21c07684bb7ae26a42d9f097dd862 to your computer and use it in GitHub Desktop.
Save odhiambo123/10a21c07684bb7ae26a42d9f097dd862 to your computer and use it in GitHub Desktop.
# projects/admin.py
from django.contrib import admin
from projects.models import Project
class ProjectAdmin(admin.ModelAdmin):
pass
admin.site.register(Project, ProjectAdmin)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment