from django.urls import path
from . import views

app_name = 'donate'

urlpatterns = [
    path('', views.donation_view, name='donate')
]