Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
amarkamthe committed Jan 13, 2017
2 parents 0039ecd + b41c63e commit 85f58b2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions component/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
url(r'^$', views.kml_upload, name='kml_upload'),
url(r'^get_component/(?P<slum_id>\d+)$', views.get_component, name='get_component'),
url(r'^get_kobo_data/(?P<slum_id>\d+)$', views.get_kobo_data, name='get_kobo_data'),
url(r'^get_kobo_FF_data/(?P<slum_id>\d+)$', views.get_kobo_FF_data, name='get_kobo_FF_data'),


]
6 changes: 6 additions & 0 deletions component/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,5 +76,11 @@ def get_component(request, slum_id):
dtcomponent[key][c['name']] = c
return HttpResponse(json.dumps(dtcomponent),content_type='application/json')

def get_kobo_FF_data(request, slum_id):
pass


def get_kobo_data(request, slum_id):
pass


0 comments on commit 85f58b2

Please sign in to comment.