|
@@ -0,0 +1,18 @@
|
|
|
|
|
+<!DOCTYPE html>
|
|
|
|
|
+<html>
|
|
|
|
|
+<body>
|
|
|
|
|
+ {% include 'hackathon/base.html' %}
|
|
|
|
|
+ <h1 class="text-center"> {{ title }}</h1>
|
|
|
|
|
+ <br>
|
|
|
|
|
+ <form class="form-inline" method='get' action="/hackathon/instagramMediaByLocation/">
|
|
|
|
|
+ <div class="form-group">
|
|
|
|
|
+ <label for="address">Address </label>
|
|
|
|
|
+ <input type="text" name="address_field" class="form-control" placeholder="">
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <button type="submit" class="btn btn-default">Search</button>
|
|
|
|
|
+ </form>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ {% if geocode_result %}
|
|
|
|
|
+ {{geocode_result}}
|
|
|
|
|
+ {% endif %}
|
|
|
|
|
+</html>
|