You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
662 B

10 years ago
10 years ago
  1. from django.conf.urls import url
  2. from hc.front import views
  3. urlpatterns = [
  4. url(r'^$', views.index, name="hc-index"),
  5. url(r'^checks/$', views.checks, name="hc-checks"),
  6. url(r'^checks/add/$', views.add_check, name="hc-add-check"),
  7. url(r'^checks/([\w-]+)/name/$', views.update_name, name="hc-update-name"),
  8. url(r'^checks/([\w-]+)/timeout/$', views.update_timeout, name="hc-update-timeout"),
  9. url(r'^pricing/$', views.pricing, name="hc-pricing"),
  10. url(r'^docs/$', views.docs, name="hc-docs"),
  11. url(r'^about/$', views.about, name="hc-about"),
  12. ]