Coverage for lino/modlib/polls/__init__.py : 37%

Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
# Copyright 2013-2015 Luc Saffre # License: BSD (see file COPYING for details)
This is the main plugin for :ref:`polly`. It is also used in :ref:`welfare`.
.. autosummary:: :toctree:
roles models choicelists utils fixtures.bible fixtures.feedback
"""
"See :doc:`/dev/plugins`."
m = m.add_menu(self.app_label, self.verbose_name) m.add_action('polls.MyPolls') m.add_action('polls.MyResponses')
m = m.add_menu(self.app_label, self.verbose_name) m.add_action('polls.ChoiceSets')
m = m.add_menu(self.app_label, self.verbose_name) m.add_action('polls.AllPolls') m.add_action('polls.Questions') m.add_action('polls.Choices') m.add_action('polls.AllResponses') m.add_action('polls.AnswerChoices') m.add_action('polls.AllAnswerRemarks') #~ m.add_action('polls.Answers') |