15 lines
343 B
Python
15 lines
343 B
Python
from django.db import models
|
|
|
|
from cms.extensions import PageExtension
|
|
from cms.extensions.extension_pool import extension_pool
|
|
|
|
|
|
# Create your models here.
|
|
|
|
class UngleichPage(PageExtension):
|
|
image_header = models.ImageField(upload_to='image_header')
|
|
|
|
class Meta:
|
|
app_label = 'ungleich'
|
|
|
|
extension_pool.register(UngleichPage)
|