Rounded buttons.
[wolnelektury.git] / src / annoy / admin.py
index 7a82d68..24e977e 100644 (file)
@@ -7,13 +7,27 @@ from . import models
 class BannerAdmin(TranslationAdmin):
     list_display = ['place', 'text', 'priority', 'since', 'until', 'show_members', 'staff_preview']
 
-    
+
 admin.site.register(models.Banner, BannerAdmin)
 
 
+class DTITForm(forms.ModelForm):
+    class Meta:
+        model = models.DynamicTextInsertText
+        fields = '__all__'
+        widgets = {
+            'background_color': forms.TextInput(attrs={"type": "color"}),
+            'text_color': forms.TextInput(attrs={"type": "color"}),
+        }
+
+
 class DynamicTextInsertTextInline(admin.TabularInline):
     model = models.DynamicTextInsertText
-    fields = ['text', 'image', 'background_color', 'text_color']
+    form = DTITForm
+    fields = ['text', 'image', 'own_colors', 'background_color', 'text_color']
+    extra = 0
+    min_num = 1
+
 
 
 class DynamicTextInsertAdmin(admin.ModelAdmin):