fixed orphaned plugins and add post functionality
This commit is contained in:
parent
78e66862bf
commit
ddb4de2954
12 changed files with 186 additions and 86 deletions
|
|
@ -1,36 +1,36 @@
|
|||
from cms.plugin_base import CMSPluginBase
|
||||
from cms.plugin_pool import plugin_pool
|
||||
from cms.wizards import wizard_base
|
||||
from .models import DGGalleryPlugin, DGSupportersPlugin, Supporter
|
||||
from django.utils.translation import ugettext as _
|
||||
# from cms.plugin_base import CMSPluginBase
|
||||
# from cms.plugin_pool import plugin_pool
|
||||
# from cms.wizards import wizard_base
|
||||
# from .models import DGGalleryPlugin, DGSupportersPlugin, Supporter
|
||||
# from django.utils.translation import ugettext as _
|
||||
|
||||
class CMSGalleryPlugin(CMSPluginBase):
|
||||
model = DGGalleryPlugin
|
||||
name = _("Digital Glarus Gallery")
|
||||
render_template = "digitalglarus/gallery.html"
|
||||
|
||||
def render(self, context, instance, placeholder):
|
||||
context.update({
|
||||
'gallery':instance.dgGallery,
|
||||
'object':instance,
|
||||
'placeholder':placeholder
|
||||
})
|
||||
return context
|
||||
|
||||
class CMSSupportersPlugin(CMSPluginBase):
|
||||
name = _("Digital Glarus Supporters")
|
||||
model = DGSupportersPlugin
|
||||
render_template = "digitalglarus/supporters_plugin.html"
|
||||
|
||||
def render(self, context, instance, placeholder):
|
||||
context.update({
|
||||
'supporters': Supporter.objects.all().order_by('name'),
|
||||
'object': instance,
|
||||
'placeholder':placeholder
|
||||
})
|
||||
return context
|
||||
# class CMSGalleryPlugin(CMSPluginBase):
|
||||
# model = DGGalleryPlugin
|
||||
# name = _("Digital Glarus Gallery")
|
||||
# render_template = "digitalglarus/gallery.html"
|
||||
#
|
||||
# def render(self, context, instance, placeholder):
|
||||
# context.update({
|
||||
# 'gallery':instance.dgGallery,
|
||||
# 'object':instance,
|
||||
# 'placeholder':placeholder
|
||||
# })
|
||||
# return context
|
||||
#
|
||||
# class CMSSupportersPlugin(CMSPluginBase):
|
||||
# name = _("Digital Glarus Supporters")
|
||||
# model = DGSupportersPlugin
|
||||
# render_template = "digitalglarus/supporters_plugin.html"
|
||||
#
|
||||
# def render(self, context, instance, placeholder):
|
||||
# context.update({
|
||||
# 'supporters': Supporter.objects.all().order_by('name'),
|
||||
# 'object': instance,
|
||||
# 'placeholder':placeholder
|
||||
# })
|
||||
# return context
|
||||
|
||||
|
||||
|
||||
plugin_pool.register_plugin(CMSGalleryPlugin)
|
||||
plugin_pool.register_plugin(CMSSupportersPlugin)
|
||||
# plugin_pool.register_plugin(CMSGalleryPlugin)
|
||||
# plugin_pool.register_plugin(CMSSupportersPlugin)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue