Deletes the link from tag through cards in the admin, as it was crashing the host by exceeding allowed memory

This commit is contained in:
Fred Pauchet 2012-12-02 20:48:34 +01:00
parent 3fee772269
commit 3ca27d0aa7
1 changed files with 2 additions and 2 deletions

View File

@ -16,12 +16,12 @@ class CardForTagInline(admin.StackedInline):
search_fields = ['label',]
class TagAdmin(admin.ModelAdmin):
inlines = [CardForTagInline,]
#inlines = [CardForTagInline,]
search_fields = ['label',]
class CountryAdmin(admin.ModelAdmin):
inlines = [CardInline,]
#inlines = [CardInline,]
search_fields = ['label',]