from django.urls import path from .views import ( EventAttendeeListView, EventIndexReport, EventInvoiceView, EventMonthReport, EventYearReport, MemberAutocomplete, upcoming_events, ) app_name = "membershipworks" urlpatterns = [ path( "member-autocomplete/", MemberAutocomplete.as_view(), name="member-autocomplete", ), path( "upcoming-events/", upcoming_events, name="upcoming-events", ), path( "event-report/", EventIndexReport.as_view(), name="event-index-report", ), path( "event-report//", EventYearReport.as_view(), name="event-year-report", ), path( "event-report///", EventMonthReport.as_view(month_format="%m"), name="event-month-report", ), path( "event-invoice/", EventInvoiceView.as_view(), name="event-invoice", ), path( "event-attendees", EventAttendeeListView.as_view(), name="event-attendees", ), ]