simplelist can be datatabled with need_datatables=True
[myslice.git] / plugins / simplelist.py
1 from django.template.loader import render_to_string
2
3 from engine.plugin import Plugin
4
5 class SimpleList (Plugin) :
6     
7     def render_content (self, request):
8         return render_to_string ("widget-simplelist.html",
9                                  self._settings)