src/source/howto-skin.rst
branchdoc-dc
changeset 83 ee94d17857a4
parent 81 40923f406943
child 85 82165875e66b
--- a/src/source/howto-skin.rst	Tue Jun 05 12:05:59 2018 +0200
+++ b/src/source/howto-skin.rst	Tue Jun 05 15:10:27 2018 +0200
@@ -1,8 +1,8 @@
 .. _skinhowto:
 
 
-How to create a new skin?
-=========================
+How to create Skin?
+===================
 
 A Skin is a tagging interface for associating media, javascript and CSS resources to a **renderer**
 
@@ -62,8 +62,11 @@
     class CustomSkinResourcesAdapter(ContextRequestViewAdapter):
     """Custom skin resources adapter"""
 
-    def get_resources(self):
-        mycms.need()
+        def get_resources(self):
+            mycms.need()
+
+
+We have defined a Multiadapter with context=(context, request, view).
 
 .. note::