uniform plugin layout with code in __init__.py
[myslice.git] / plugins / stack / stack.py
diff --git a/plugins/stack/stack.py b/plugins/stack/stack.py
deleted file mode 100644 (file)
index c8ddbea..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
-from django.template.loader import render_to_string
-
-from unfold.composite import Composite
-
-class Stack (Composite) :
-    
-    def template_file (self):        return "stack.html"
-    def template_env (self, request):
-        env = Composite.template_env (self, request)
-        env['domid'] = self.domid
-        return env