Mercurial > hg > GlobalNeighbors
annotate globalneighbors/templates/index.html @ 10:21ed15391e8a
add a placeholder view for a city based on geoid
| author | Jeff Hammel <k0scist@gmail.com> | 
|---|---|
| date | Sun, 25 Jun 2017 12:28:36 -0700 | 
| parents | 254195d0bac2 | 
| children | d1b99c695511 | 
| rev | line source | 
|---|---|
| 6 | 1 <!DOCTYPE html> | 
| 2 <html> | |
| 3 <head> | |
| 4 <title>Global Neighbors</title> | |
| 7 
254195d0bac2
partial implementation of autocomplete using jqueryui; easyautocomplete.com may be more what we want
 Jeff Hammel <k0scist@gmail.com> parents: 
6diff
changeset | 5 <script src="https://code.jquery.com/jquery-1.12.4.js"></script> | 
| 
254195d0bac2
partial implementation of autocomplete using jqueryui; easyautocomplete.com may be more what we want
 Jeff Hammel <k0scist@gmail.com> parents: 
6diff
changeset | 6 <script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script> | 
| 
254195d0bac2
partial implementation of autocomplete using jqueryui; easyautocomplete.com may be more what we want
 Jeff Hammel <k0scist@gmail.com> parents: 
6diff
changeset | 7 <script> | 
| 
254195d0bac2
partial implementation of autocomplete using jqueryui; easyautocomplete.com may be more what we want
 Jeff Hammel <k0scist@gmail.com> parents: 
6diff
changeset | 8 $( function() { | 
| 
254195d0bac2
partial implementation of autocomplete using jqueryui; easyautocomplete.com may be more what we want
 Jeff Hammel <k0scist@gmail.com> parents: 
6diff
changeset | 9 $( "#cities" ).autocomplete({ | 
| 
254195d0bac2
partial implementation of autocomplete using jqueryui; easyautocomplete.com may be more what we want
 Jeff Hammel <k0scist@gmail.com> parents: 
6diff
changeset | 10 source: "/cities", | 
| 
254195d0bac2
partial implementation of autocomplete using jqueryui; easyautocomplete.com may be more what we want
 Jeff Hammel <k0scist@gmail.com> parents: 
6diff
changeset | 11 autoFocus: true, | 
| 
254195d0bac2
partial implementation of autocomplete using jqueryui; easyautocomplete.com may be more what we want
 Jeff Hammel <k0scist@gmail.com> parents: 
6diff
changeset | 12 minLength: 3, | 
| 10 
21ed15391e8a
add a placeholder view for a city based on geoid
 Jeff Hammel <k0scist@gmail.com> parents: 
7diff
changeset | 13 delay: 1500 | 
| 7 
254195d0bac2
partial implementation of autocomplete using jqueryui; easyautocomplete.com may be more what we want
 Jeff Hammel <k0scist@gmail.com> parents: 
6diff
changeset | 14 }); | 
| 
254195d0bac2
partial implementation of autocomplete using jqueryui; easyautocomplete.com may be more what we want
 Jeff Hammel <k0scist@gmail.com> parents: 
6diff
changeset | 15 }); | 
| 
254195d0bac2
partial implementation of autocomplete using jqueryui; easyautocomplete.com may be more what we want
 Jeff Hammel <k0scist@gmail.com> parents: 
6diff
changeset | 16 </script> | 
| 6 | 17 </head> | 
| 18 <body> | |
| 19 <h1>Global Neighbors</h1> | |
| 20 <h2>Serving {{ n_cities }} cities</h2> | |
| 7 
254195d0bac2
partial implementation of autocomplete using jqueryui; easyautocomplete.com may be more what we want
 Jeff Hammel <k0scist@gmail.com> parents: 
6diff
changeset | 21 | 
| 
254195d0bac2
partial implementation of autocomplete using jqueryui; easyautocomplete.com may be more what we want
 Jeff Hammel <k0scist@gmail.com> parents: 
6diff
changeset | 22 <div class="ui-widget"> | 
| 
254195d0bac2
partial implementation of autocomplete using jqueryui; easyautocomplete.com may be more what we want
 Jeff Hammel <k0scist@gmail.com> parents: 
6diff
changeset | 23 <label for="cities">Enter a city: </label> | 
| 
254195d0bac2
partial implementation of autocomplete using jqueryui; easyautocomplete.com may be more what we want
 Jeff Hammel <k0scist@gmail.com> parents: 
6diff
changeset | 24 <input id="cities"/> | 
| 
254195d0bac2
partial implementation of autocomplete using jqueryui; easyautocomplete.com may be more what we want
 Jeff Hammel <k0scist@gmail.com> parents: 
6diff
changeset | 25 </div> | 
| 
254195d0bac2
partial implementation of autocomplete using jqueryui; easyautocomplete.com may be more what we want
 Jeff Hammel <k0scist@gmail.com> parents: 
6diff
changeset | 26 | 
| 6 | 27 </body> | 
| 28 </html> | 
