from django.conf.urls import url
from .views import ContactUsFormView
urlpatterns = [
url(r'^send/$', ContactUsFormView.as_view(), name='send'),
]