Code Monkey home page Code Monkey logo

opps-polls's Introduction

opps.polls

Application Poll for Opps

Features

  • Custom urls
  • Custom templates
  • Single or Multiple choice pool
  • Results page
  • Hide/Show results page
  • Block multiple votes by cookie
  • End date and Start date
  • Allow images for each choice
  • Set min and max allowed choices for voting

Requirements

Django>1.5 Opps

Instalation

python setup.py install

or

pip install opps-polls

Configuration

App

Include opps.polls on your django settings

INSTALLED_APPS += (
    'opps.polls'
)

URL

Include in your project urls.py before the opps entry

urlpatterns = patterns('',
    ...
    ...
    url(r'^poll/', include('opps.polls.urls', namespace='polls', app_name='polls')),
    ...
    url(r'^', include('opps.urls')),
    ...
    ...
)

Create the tables

python manage.py syncdb

You should see:

...
Creating table polls_poll
Creating table polls_pollpost
Creating table polls_choice
...

Now opps.polls is available on your Django admin and you can access the url http://..../poll/

Application URLs

  • List all polls /poll/
  • List all polls by channel /poll/channel/< channel-slug >
  • Poll voting page /poll/< poll-slug >
  • Poll results page /poll/< poll-slug >/results (you can use any word here i.e: /poll/< poll-slug >/resultados)

Application Templates

For any template the context has the following objects:

  • poll (The poll)
  • voted (The choices when the user has voted)
  • error (A string message when there is some error)

Default template files

  • polls/pool_list.html (List all polls)
  • polls/pool_detail.html (Show details and voting form)
  • polls/pool_voted.html (Showed after the user has voted)
  • polls/pool_result.html (Results percentage)
  • polls/pool_closed.html (Showed when poll is not opened for voting or results)

Custom template files

polls will try to find the most specific template to render. You can choose some ways to force a custom template In order of precedence:

  1. Set template_path in each poll object
  2. Create a polls/< channel-slug >/< poll-slug >_.html
  3. Create a polls/< channel-slug >_< sufix >.html
  4. Create a polls/< poll-slug >_< sufix >.html
  5. Create a polls/poll_< sufix >.html

Available sufix are: list, detail, voted, result, closed

Contacts

The place to create issues is polls github issues <https://github.com/opps/opps.poll/issues>_. The more information you send about an issue, the greater the chance it will get fixed fast.

If you are not sure about something, have a doubt or feedback, or just want to ask for a feature, feel free to join our mailing list <http://groups.google.com/group/opps-developers>_, or, if you're on FreeNode (IRC), you can join the chat #opps .

License

Copyright 2013 YACOWS <http://yacows.com.br/>_. and other contributors

Licensed under the MIT License <http://www.oppsproject.org/en/latest/#license>_

opps-polls's People

Contributors

algmelo avatar avelino avatar rochacbruno avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.