X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/ae60b2a3949e96357477cc04f90fd0873cee8a92..f7d8acded4a58d423035c5759f6dee9a34396959:/src/sponsors/admin.py?ds=inline

diff --git a/src/sponsors/admin.py b/src/sponsors/admin.py
index 274fe901e..40e14155b 100644
--- a/src/sponsors/admin.py
+++ b/src/sponsors/admin.py
@@ -1,9 +1,8 @@
-# -*- coding: utf-8 -*-
-# This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later.
-# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
+# This file is part of Wolne Lektury, licensed under GNU Affero GPLv3 or later.
+# Copyright © Fundacja Wolne Lektury. See NOTICE for more information.
 #
 from django.contrib import admin
-from jsonfield import JSONField
+from django.db.models import TextField
 from sponsors import models
 from sponsors import widgets
 
@@ -16,7 +15,7 @@ class SponsorAdmin(admin.ModelAdmin):
 
 class SponsorPageAdmin(admin.ModelAdmin):
     formfield_overrides = {
-        JSONField: {'widget': widgets.SponsorPageWidget},
+        TextField: {'widget': widgets.SponsorPageWidget},
     }
     list_display = ('name',)
     search_fields = ('name',)