Skip to content
Permalink
1db41635c6
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
16 lines (12 sloc) 436 Bytes
from django.contrib import admin
# Register your models here.
# allow admin make change in employee table
from .models import employee,deliverym,team,van,emp
admin.site.register(employee)
admin.site.register(deliverym)
admin.site.register(emp)
admin.site.register(van)
admin.site.register(team)
# class Postuni(admin.ModelAdmin):
# # show field to show to admin
# list_display = ( 'source', 'destination')