예제 #1
0
    url(r"^custom/case/download/(?P<export_id>[\w\-]+)/$",
        DownloadCaseExportView.as_view(),
        name=DownloadCaseExportView.urlname),
    url(r"^custom/new/case/download/(?P<export_id>[\w\-]+)/$",
        DownloadNewCaseExportView.as_view(),
        name=DownloadNewCaseExportView.urlname),
    url(r"^custom/dailysaved/download/(?P<export_instance_id>[\w\-]+)/$",
        download_daily_saved_export,
        name="download_daily_saved_export"),
    url(r"^custom/new/sms/download/$",
        DownloadNewSmsExportView.as_view(),
        name=DownloadNewSmsExportView.urlname),

    # Edit export views
    url(r"^custom/new/form/edit/(?P<export_id>[\w\-]+)/$",
        EditNewCustomFormExportView.as_view(),
        name=EditNewCustomFormExportView.urlname),
    url(r"^custom/form_feed/edit/(?P<export_id>[\w\-]+)/$",
        EditFormFeedView.as_view(),
        name=EditFormFeedView.urlname),
    url(r"^custom/form_daily_saved/edit/(?P<export_id>[\w\-]+)/$",
        EditFormDailySavedExportView.as_view(),
        name=EditFormDailySavedExportView.urlname),
    url(r"^custom/new/case/edit/(?P<export_id>[\w\-]+)/$",
        EditNewCustomCaseExportView.as_view(),
        name=EditNewCustomCaseExportView.urlname),
    url(r"^custom/case_feed/edit/(?P<export_id>[\w\-]+)/$",
        EditCaseFeedView.as_view(),
        name=EditCaseFeedView.urlname),
    url(r"^custom/case_daily_saved/edit/(?P<export_id>[\w\-]+)/$",
        EditCaseDailySavedExportView.as_view(),
예제 #2
0
     CreateNewCustomFormExportView.as_view(),
     name=CreateNewCustomFormExportView.urlname),
 url(r"^custom/new/case/create$",
     CreateNewCustomCaseExportView.as_view(),
     name=CreateNewCustomCaseExportView.urlname),
 url(r"^custom/form/download/bulk/$",
     BulkDownloadFormExportView.as_view(),
     name=BulkDownloadFormExportView.urlname),
 url(r"^custom/form/download/(?P<export_id>[\w\-]+)/$",
     DownloadFormExportView.as_view(),
     name=DownloadFormExportView.urlname),
 url(r"^custom/new/form/download/(?P<export_id>[\w\-]+)/$",
     DownloadNewFormExportView.as_view(),
     name=DownloadNewFormExportView.urlname),
 url(r"^custom/new/form/edit/(?P<export_id>[\w\-]+)/$",
     EditNewCustomFormExportView.as_view(),
     name=EditNewCustomFormExportView.urlname),
 url(r"^custom/new/case/edit/(?P<export_id>[\w\-]+)/$",
     EditNewCustomCaseExportView.as_view(),
     name=EditNewCustomCaseExportView.urlname),
 url(r"^custom/form/edit/(?P<export_id>[\w\-]+)/$",
     EditCustomFormExportView.as_view(),
     name=EditCustomFormExportView.urlname),
 url(r"^custom/case/download/(?P<export_id>[\w\-]+)/$",
     DownloadCaseExportView.as_view(),
     name=DownloadCaseExportView.urlname),
 url(r"^custom/case/edit/(?P<export_id>[\w\-]+)/$",
     EditCustomCaseExportView.as_view(),
     name=EditCustomCaseExportView.urlname),
 url(r"^custom/delete/(?P<export_id>[\w\-]+)/$",
     DeleteCustomExportView.as_view(),