hp-library/templates/layout.html

80 lines
2.4 KiB
HTML
Raw Normal View History

2019-11-22 18:57:35 +01:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Library</title>
<link rel="stylesheet" href="{{ url_for('static', filename='css/main.css') }}">
2019-11-27 13:40:15 +01:00
<!--TEST-->
2019-11-27 19:02:41 +01:00
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.3/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$(".librarian-names").click(function(event){
var thename = $(this).text();
$.getJSON('{{ url_for('static', filename='js/realjson.json') }}', function(test) {
alert(thename);
// iterate in test[i].librarian to find where the name is present
//to get the test[i].debris that goes with it
var alldocs = [];
for (var i = 0; i < test.length; ++i) {
var item = test[i];
if(item.librarian.includes(thename)){
ledocument = item.debris;
// alert(ledocument);
alldocs.push(ledocument);
};
};
alert(alldocs);
});
});
});
</script>
2019-11-27 13:40:15 +01:00
2019-11-22 18:57:35 +01:00
</head>
<body>
<div class="nav-top">
<ul>
<li><a class="nav-button" style="text-align: left;">BOUGHT</a></li>
<li><a class="nav-button" style="text-align: center;">STOLEN</a>
<li><a class="nav-button" style="text-align: right;">REPURPOSED</a>
</ul>
</div>
<div class="main">
<div class="main-column-left">
2019-11-27 13:40:15 +01:00
<div id="listofpeople">
2019-11-22 18:57:35 +01:00
{% for librarian in librarians %}
2019-11-27 19:02:41 +01:00
<!-- <a href="#" class="librarian-names">{{ librarian }}</a> -->
<span class="librarian-names">{{ librarian }}</span>
2019-11-22 18:57:35 +01:00
{% endfor %}
2019-11-27 13:40:15 +01:00
</div>
2019-11-26 13:22:14 +01:00
<br>
2019-11-22 18:57:35 +01:00
2019-11-26 13:22:14 +01:00
<div class="file-names-container">
2019-11-22 18:57:35 +01:00
{% for file in filetoname_dict %}
2019-11-26 13:22:14 +01:00
<a href="" class="file-names">{{file["debris"]}}</a><br>
2019-11-22 18:57:35 +01:00
{% endfor %}
2019-11-26 13:22:14 +01:00
</div>
2019-11-22 18:57:35 +01:00
</div>
2019-11-26 13:22:14 +01:00
2019-11-22 18:57:35 +01:00
<div class="main-column-right">
2019-11-27 19:02:41 +01:00
<a href="{{ url_for('static', filename='realjson.json') }}">test link</a>
2019-11-27 13:40:15 +01:00
2019-11-22 18:57:35 +01:00
{% block content %}
{% endblock content %}
</div>
</div>
<div class="nav-bottom">
<ul>
<li><a class="nav-button" style="text-align: left;">COPIED</a></li>
<li><a class="nav-button" style="text-align: center;">FOUND</a></li>
<li><a class="nav-button" style="text-align: right;">GIFT</a></li>
</ul>
</div>
</body>
</html>