from django.conf.urls import url from .views import view_petition urlpatterns = [ url(r'^', view_petition), ]