コード例 #1
0
 def table_template(self):
     return get_handlebars_template(os.path.join(os.path.dirname(__file__),
                                                 'templates',
                                                 'table.html'))
コード例 #2
0
ファイル: overview.py プロジェクト: 4teamwork/opengever.core
 def task_reminder_vuejs_template(self):
     return get_handlebars_template(
         resource_filename('opengever.task.browser.vue_templates',
                           'task_reminder_selector.html'))
コード例 #3
0
 def task_reminder_vuejs_template(self):
     return get_handlebars_template(
         resource_filename('opengever.task.browser.vue_templates',
                           'task_reminder_selector.html'))
コード例 #4
0
 def table_template(self):
     return get_handlebars_template(
         os.path.join(os.path.dirname(__file__), 'templates', 'table.html'))
コード例 #5
0
 def vuejs_template(self):
     return get_handlebars_template(
         resource_filename('opengever.base.viewlets',
                           'recently_touched_menu.html'))
コード例 #6
0
ファイル: favorites.py プロジェクト: 4teamwork/opengever.core
 def vuejs_template(self):
     return get_handlebars_template(
         resource_filename('opengever.base.browser',
                           'templates/favorites_list.html'))
コード例 #7
0
 def vuejs_template(self):
     return get_handlebars_template(
         resource_filename('opengever.document.browser',
                           'templates/save_pdf_under.html'))
コード例 #8
0
ファイル: zipexport.py プロジェクト: 4teamwork/opengever.core
 def vuejs_template(self):
     return get_handlebars_template(
         resource_filename('opengever.meeting.browser.meetings',
                           'templates/demand_zip.html'))
コード例 #9
0
 def vuejs_template(self):
     return get_handlebars_template(
         resource_filename('opengever.document.browser',
                           'templates/save_pdf_under.html'))
コード例 #10
0
 def vuejs_template(self):
     return get_handlebars_template(
         resource_filename('opengever.base.viewlets',
                           'recently_touched_menu.html'))
コード例 #11
0
 def vuejs_template(self):
     return get_handlebars_template(
         resource_filename('opengever.base.viewlets',
                           'favorites_menu.html'))
コード例 #12
0
 def test_get_template(self):
     template = handlebars.get_handlebars_template(SIMPLE_TEMPLATE)
     self.assertIn('<div class="foo">%(foo)s</div>', template)
     self.assertIn('<div class="bar">%(bar)s</div>', template)
コード例 #13
0
ファイル: sharing.py プロジェクト: 4teamwork/opengever.core
 def vuejs_template(self):
     return get_handlebars_template(
         resource_filename('opengever.sharing.browser',
                           'templates/sharing.html'))
コード例 #14
0
 def vuejs_template(self):
     return get_handlebars_template(
         resource_filename('opengever.base.browser',
                           'templates/favorites_list.html'))
コード例 #15
0
 def vuejs_template(self):
     return get_handlebars_template(
         resource_filename('opengever.sharing.browser',
                           'templates/sharing.html'))