Skip to content
Snippets Groups Projects
Select Git revision
  • e7a0b0e3c5b1c2617a79690fa3179daa0cfb9b20
  • master default protected
  • feat/new-image-formats
  • clickable-select-chevron
  • 2.20.0
  • 2.19.0
  • 2.18.0
  • 2.17.0
  • 2.16.1
  • 2.16.0
  • 2.15.0
  • 2.14.0
  • 2.13.0
  • 2.12.1
  • 2.11.0
  • 2.10.0
  • 2.9.1
  • 2.9.0
  • 2.8.0
  • 2.7.1
  • 2.7.0
  • 2.6.0
  • 2.5.2
  • 2.5.1
24 results

candidate-card.mustache

Blame
  • __init__.py 460 B
    
    from django.conf import settings
    from django.core.urlresolvers import reverse
    from helios.views import election_shortcut
    
    TEMPLATE_BASE = settings.HELIOS_TEMPLATE_BASE or "helios/templates/base.html"
    
    # a setting to ensure that only admins can create an election
    ADMIN_ONLY = settings.HELIOS_ADMIN_ONLY
    
    # allow upload of voters via CSV?
    VOTERS_UPLOAD = settings.HELIOS_VOTERS_UPLOAD
    
    # allow emailing of voters?
    VOTERS_EMAIL = settings.HELIOS_VOTERS_EMAIL