Web M&M
https://mam.matfyz.cz
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
391 B
20 lines
391 B
import django.forms
|
|
from django.contrib import admin
|
|
|
|
from ckeditor_uploader.widgets import CKEditorUploadingWidget
|
|
|
|
from .models import Novinky
|
|
|
|
|
|
class NovinkyAdminForm(django.forms.ModelForm):
|
|
class Meta:
|
|
model = Novinky
|
|
widgets = {
|
|
'text': CKEditorUploadingWidget,
|
|
}
|
|
fields = '__all__'
|
|
|
|
@admin.register(Novinky)
|
|
class NovinkyAdmin(admin.ModelAdmin):
|
|
form = NovinkyAdminForm
|
|
|
|
|