Skip to content

Commit

Permalink
django
Browse files Browse the repository at this point in the history
  • Loading branch information
arpit551 committed Oct 6, 2018
1 parent ab12dca commit 88abc73
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 0 deletions.
Binary file modified forms/__pycache__/admin.cpython-36.pyc
Binary file not shown.
Binary file modified forms/__pycache__/views.cpython-36.pyc
Binary file not shown.
8 changes: 8 additions & 0 deletions forms/admin.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
from django.contrib import admin
from .models import FormSubmit

admin.site.site_header = "MDP ADMIN PAGE";
admin.site.site_title = "ADMISTRATOR";


# Register your models here.
class AllEntiryAdmin(admin.ModelAdmin):
list_display = ("name", "id")
admin.site.register(FormSubmit,AllEntiryAdmin)

0 comments on commit 88abc73

Please sign in to comment.