<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>ELAB Part Search Engine</title> <script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script> <link href="https://fonts.googleapis.com/css?family=Roboto:300,400" rel="stylesheet"> <link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='style.css') }}"> <script src="https://use.fontawesome.com/2fef7be393.js"></script> <script type="text/javascript" src="{{ url_for('static', filename='common.js') }}"></script> <script type="text/javascript" src="{{ url_for('static', filename='locationEditorScript.js') }}"></script> </head> <body> <h1>ELAB Part Search Engine - LOCATION EDITOR</h1> <p>Looking for a place to store your obsolete ICs discontinued years ago? Just toss them anywhere and mark that location here!</p> <table id="results"> <tr> <th id="id">ID</th> <th id="location">Location name</th> <th id="mapURL">Map URL</th> </tr> {% for location in locations %} <tr> <td>{{location['id']}}</td> <td>{{location['name']}}</td> <td>{{location['map']}}</td> </tr> {% endfor %} </table> <div class="bottom-spacer"></div> <div class="overlay"> <h2>Part Details</h2> <table id="details"> <tr><td>Name</td></tr> <tr><td><p></p><input type="text" name="location-name-input" id="location-name-input" placeholder="Location name" class="pinfo-input"/></td></tr> <tr><td>MAP</td></tr> <tr><td> <select class="pinfo-input" onchange="update_clickable_map()" name="mapfile-input" id="mapfile-input"> {% for mapfile in mapfiles %} <option value="{{mapfile}}" {% if mapfile==defaultMapfile %}selected="true"{% endif %}>{{mapfile}}</option> {% endfor %} </select> </td></tr> <tr><td>And click on the map to place the marker</td></tr> </table> <img src="map/{{defaultMapfile}}" id="clickablemap" class="map" onclick="placeMarker()"/> <div class="round-button-left"><a href="#" id="edit-button"><i class="fa fa-pencil" aria-hidden="true"></i></a></div> <div class="round-button"><a href="#" id="delete-button"><i class="fa fa-trash" aria-hidden="true"></i></a></div> <div class="small-square-button"><a href="#" onclick="overlay_out()"><i class="fa fa-times" aria-hidden="true"></i></a></div> </div> <div class="round-floating-button"><a href="#" onclick="new_location_entry()"><i class="fa fa-plus" aria-hidden="true"></i></a></div> </body> </html>