107 lines
4.8 KiB
HTML
107 lines
4.8 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Search Profile</title>
|
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
|
<link rel="stylesheet" href="bower_components/bootstrap/dist/css/bootstrap.css">
|
|
<style type="text/css">
|
|
.form-horizontal .control-label {
|
|
text-align: left;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<!-- busy spinner -->
|
|
<div class="page-header">
|
|
<h1><img id="spinner" alt="loading" class="pull-right" src="images/spinner.gif" style="display: none;" width="32" height="32">Search Profile</h1>
|
|
</div>
|
|
|
|
<table class="table table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th class="text-left">Category</th>
|
|
<th class="text-right">Rating</th>
|
|
</tr>
|
|
</thead>
|
|
<tr>
|
|
<td class="text-left">Now is the time for all good men</td>
|
|
<td class="text-right">
|
|
<label class="radio-inline">
|
|
<input type="radio" name="test1" value="-1"> Agree
|
|
</label>
|
|
<label class="radio-inline">
|
|
<input type="radio" name="test1" value="-1" checked> Neither
|
|
</label>
|
|
<label class="radio-inline">
|
|
<input type="radio" name="test1" value="-1"> Disagree
|
|
</label>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="text-left">Now is the time for all good men</td>
|
|
<td class="text-right">
|
|
<label class="radio-inline">
|
|
<input type="radio" name="test2" value="-1"> Agree
|
|
</label>
|
|
<label class="radio-inline">
|
|
<input type="radio" name="test2" value="-1" checked> Neither
|
|
</label>
|
|
<label class="radio-inline">
|
|
<input type="radio" name="test2" value="-1"> Disagree
|
|
</label>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
<div class="input-group">
|
|
<input type="text" class="form-control" placeholder="New property text">
|
|
<span class="input-group-btn">
|
|
<button class="btn btn-primary"><span class="glyphicon glyphicon-plus"></span></button>
|
|
</span>
|
|
</div>
|
|
|
|
<!-- result listing -->
|
|
<!-- <div class="panel panel-default" style="display: none;" id="resultPanel"> -->
|
|
<!-- <div class="panel-heading"> -->
|
|
<!-- <big>Results (<span id="resultCount"></span>)</big> -->
|
|
<!-- </div> -->
|
|
<!-- <div class="panel-body"> -->
|
|
<!-- <script id="template" type="text/x-handlers-template"> -->
|
|
<!-- {{#if results}} -->
|
|
<!-- <table class="table table-striped table-condensed"> -->
|
|
<!-- <thead> -->
|
|
<!-- <tr> -->
|
|
<!-- <th>Id</th> -->
|
|
<!-- <th>Name</th> -->
|
|
<!-- <th>Distance to user</th> -->
|
|
<!-- <th>Closest station</th> -->
|
|
<!-- <th>Distance to station</th> -->
|
|
<!-- <th>Score</th> -->
|
|
<!-- </tr> -->
|
|
<!-- </thead> -->
|
|
<!-- {{#each results}} -->
|
|
<!-- <tr> -->
|
|
<!-- <td>{{id}}</td> -->
|
|
<!-- <td><a href="{{url}}">{{name}}</a></td> -->
|
|
<!-- <th>{{distanceToUser}} km</th> -->
|
|
<!-- <th>{{closestStn}}</th> -->
|
|
<!-- <th>{{distanceToStn}} km</th> -->
|
|
<!-- <td>{{score}}</td> -->
|
|
<!-- </tr> -->
|
|
<!-- {{/each}} -->
|
|
<!-- </table> -->
|
|
<!-- {{/if}} -->
|
|
<!-- </script> -->
|
|
<!-- <div id="results"></div> -->
|
|
<!-- </div> -->
|
|
<!-- </div> -->
|
|
|
|
</div>
|
|
<script src="bower_components/jquery/dist/jquery.js"></script>
|
|
<script src="bower_components/handlebars/handlebars.js"></script>
|
|
<script src="bower_components/underscore/underscore.js"></script>
|
|
<script src="bower_components/bootstrap/dist/js/bootstrap.js"></script>
|
|
</body>
|
|
</html>
|