{ "info": { "author": "Daniel Kaufhold", "author_email": "daniel.kaufhold@bitmazk.com", "bugtrack_url": null, "classifiers": [], "description": "Django Enquiry\n==============\n\nA reusable Django app to host multilingual polls on your site.\n\n\nInstallation\n------------\n\nIf you want to install the latest stable release from PyPi::\n\n $ pip install django-enquiry\n\nIf you feel adventurous and want to install the latest commit from GitHub::\n\n $ pip install -e git://github.com/bitmazk/django-enquiry.git#egg=enquiry\n\nAdd ``enquiry`` to your ``INSTALLED_APPS``::\n\n INSTALLED_APPS = (\n ...,\n 'enquiry',\n )\n\nRun the South migrations::\n\n ./manage.py migrate enquiry\n\n\nURLs or Apphook\n---------------\n\nYou can just add the enquiry urls to your ``urls.py`` or choose the\napphook in your django-cms page.\n\n\nTemplatetags\n------------\n\nrender_current_poll\n+++++++++++++++++++\n\nThis inclusion tag allows you to render the currently active poll anywhere\non your site::\n\n {% load enquiry_tags %}\n {% render_current_poll %}\n\nIf you want to customize the ouput of this tag, please override the\n`enquiry/current_poll.html` template.\n\nget_current_poll\n++++++++++++++++\n\nThis assignment tag allows you to get the current poll and render it however\nyou like it::\n\n {% load enquiry_tags %}\n {% get_current_poll as poll %}\n