Files @ 6e133970d958
Branch filter:

Location: symposion_app/symposion/conference/urls.py

Christopher Neugebauer
Removes div-by-zero error if the first vote is an abstention
1
2
3
4
5
6
7
from django.conf.urls import url

from .views import user_list

urlpatterns = [
    url(r"^users/$", user_list, name="user_list"),
]