Add version overview page
diff --git a/crashreport_stats/urls.py b/crashreport_stats/urls.py
index de8c55b..a80425c 100644
--- a/crashreport_stats/urls.py
+++ b/crashreport_stats/urls.py
@@ -10,6 +10,12 @@
     url(r'^$',
         views.home,
         name='device'),
+    url(r'^versions/$',
+        views.versions_overview,
+        name='hiccup_stats_versions'),
+    url(r'^versions/all/$',
+        views.versions_all_overview,
+        name='hiccup_stats_versions_all'),
     url(r'^api/v1/device_overview/(?P<uuid>[a-f0-9-]+)/$',
         rest_endpoints.DeviceStat.as_view(),
         name='hiccup_stats_api_v1_device_overview'),
@@ -19,7 +25,16 @@
     url(r'^api/v1/device_report_history/(?P<uuid>[a-f0-9-]+)/$',
         rest_endpoints.DeviceReportHistory.as_view(),
         name='hiccup_stats_api_v1_device_report_history'),
+
     url(r'^api/v1/logfile_download/(?P<id>[0-9]+)/$',
         rest_endpoints.LogFileDownload.as_view(),
         name='hiccup_stats_api_v1_logfile_download'),
+        
+    url(r'^api/v1/versions/$',
+        rest_endpoints.VersionListView.as_view(),
+        name='hiccup_stats_api_v1_versions'),
+    
+    url(r'^api/v1/version_daily/$',
+        rest_endpoints.VersionDailyListView.as_view(),
+        name='hiccup_stats_api_v1_version_daily'),
 ]