Beispiel #1
0
    url(r'^raw_couch/$', raw_couch, name='raw_couch'),
    url(r'^raw_doc/$', raw_doc, name='raw_doc'),
    url(r'^callcenter_test/$', callcenter_test, name='callcenter_test'),
    url(r'^api/', include(admin_api_urlpatterns)),
    url(r'^callcenter_ucr_check/$',
        CallcenterUCRCheck.as_view(),
        name=CallcenterUCRCheck.urlname),
    url(r'^api/', include(admin_api_urlpatterns)),
    url(r'^download_malt/$',
        DownloadMALTView.as_view(),
        name=DownloadMALTView.urlname),
    url(r'^download_gir',
        DownloadGIRView.as_view(),
        name=DownloadGIRView.urlname),
    url(r'^dimagisphere/$',
        require_superuser(
            DimagisphereView.as_view(
                template_name='hqadmin/dimagisphere/form_feed.html')),
        name='dimagisphere'),
    url(r'^reprocess_messaging_case_updates/$',
        ReprocessMessagingCaseUpdatesView.as_view(),
        name=ReprocessMessagingCaseUpdatesView.urlname),
    url(r'^top_five_projects_by_country/$',
        top_five_projects_by_country,
        name='top_five_projects_by_country'),
    url(r'^web_user_data',
        WebUserDataView.as_view(),
        name=WebUserDataView.urlname),
    AdminReportDispatcher.url_pattern(),
]
Beispiel #2
0
    url(r'^$', 'default', name="default_admin_report"),
    url(r'^system/$', SystemInfoView.as_view(), name=SystemInfoView.urlname),
    url(r'^system/recent_changes/$', 'view_recent_changes', name="view_recent_changes"),
    url(r'^system/recent_changes/download/$', 'download_recent_changes', name="download_recent_changes"),
    url(r'^system/system_ajax$', 'system_ajax', name="system_ajax"),
    url(r'^contact_email/$', 'contact_email', name="contact_email"),
    url(r'^mass_email/$', 'mass_email', name="mass_email"),
    url(r'^auth_as/$', AuthenticateAs.as_view(), name=AuthenticateAs.urlname),
    url(r'^auth_as/(?P<username>[^/]*)/$', AuthenticateAs.as_view(), name=AuthenticateAs.urlname),
    url(r'^auth_as/(?P<username>[^/]*)/(?P<domain>{})/$'.format(new_domain_re),
        AuthenticateAs.as_view(), name=AuthenticateAs.urlname),
    url(r'^management_commands/$', 'management_commands', name="management_commands"),
    url(r'^run_command/$', 'run_command', name="run_management_command"),
    url(r'^phone/restore/$', 'admin_restore', name="admin_restore"),
    url(r'^phone/restore/(?P<app_id>[\w-]+)/$', 'admin_restore', name='app_aware_admin_restore'),
    url(r'^flag_broken_builds/$', FlagBrokenBuilds.as_view(), name="flag_broken_builds"),
    url(r'^stats_data/$', 'stats_data', name="admin_stats_data"),
    url(r'^admin_reports_stats_data/$', 'admin_reports_stats_data', name="admin_reports_stats_data"),
    url(r'^loadtest/$', 'loadtest', name="loadtest_report"),
    url(r'^do_pillow_op/$', 'pillow_operation_api', name="pillow_operation_api"),
    url(r'^doc_in_es/$', 'doc_in_es', name='doc_in_es'),
    url(r'^raw_couch/$', 'raw_couch', name='raw_couch'),
    url(r'^callcenter_test/$', 'callcenter_test', name='callcenter_test'),
    (r'^api/', include(admin_api_urlpatterns)),
    url(r'^download_malt/$', 'malt_as_csv', name='download_malt'),
    url(r'^dimagisphere/$',
        require_superuser(TemplateView.as_view(template_name='hqadmin/dimagisphere/form_feed.html')),
        name='dimagisphere'),
    AdminReportDispatcher.url_pattern(),
)