52e22d2338d6670648671c2f9d295c93e995d309
[myslice.git] / engine / views.py
1 # Create your views here.
2
3 from django.core.context_processors import csrf
4 from django.template import RequestContext
5 from django.template.loader import render_to_string
6 from django.shortcuts import render_to_response
7
8 from plugins.verticallayout import VerticalLayout
9 from plugins.tabs import Tabs
10 from plugins.simplelist import SimpleList
11 from plugins.slicelist import SliceList
12 from plugins.raw import Raw
13
14 from myslice.viewutils import topmenu_items, the_user
15 from myslice.viewutils import hard_wired_slice_names, hard_wired_list, lorem_p, lorem
16
17 def test_plugin_view (request):
18     
19     # variables that will get passed to this template
20     template_env = {}
21     
22     main_plugin = \
23         VerticalLayout ( title='title for the vertical layout',name='vertical1',
24         sons = [ SimpleList (title='SimpleList and dataTables',
25                              name='simplelist1',
26                              list=hard_wired_list, 
27                              header='Hard wired', 
28                              foo='the value for foo',
29                              with_datatables=True,
30                              toggled=False),
31                  Tabs (title='Sample Tabs',name='tabs1',
32                        active='raw1',
33                        sons = [ Raw (title='a raw plugin',name='raw1',
34                                      togglable=False,
35                                      html= 3*lorem_p),
36                                 SliceList(title='a slice list',name='slicelist-main',
37                                           togglable=False,
38                                           list=hard_wired_slice_names),
39                                 Raw (title='raw title',name='raw2',
40                                      togglable=False,html=lorem) ]),
41                  SimpleList (title='SimpleList with slice names', 
42                              name='simplelist2',
43                              list=hard_wired_slice_names,
44                              ) ] )
45     # define 'content_main' to the template engine
46     template_env [ 'content_main' ] = main_plugin.render(request)
47
48     ##########
49     # lacks a/href to /slice/%s
50     related_plugin = SliceList (title='SliceList plugin',name='slicelist1',
51                                 with_datatables='yes', 
52                                 list=hard_wired_slice_names, 
53                                 header='Slices')
54     # likewise but on the side view
55     template_env [ 'content_related' ] = related_plugin.render (request)
56
57     # more general variables expected in the template
58     template_env [ 'title' ] = 'Test Plugin View' 
59     template_env [ 'topmenu_items' ] = topmenu_items('plugin', request) 
60     template_env [ 'username' ] = the_user (request) 
61
62     # request.plugin_prelude holds a summary of the requirements() for all plugins
63     # define {js,css}_{files,chunks}
64     prelude_env = request.plugin_prelude.template_env()
65     template_env.update(prelude_env)
66
67     return render_to_response ('view-plugin.html',template_env,
68                                context_instance=RequestContext(request))
69