|
|
@ -253,7 +253,6 @@ $.ajax({ |
|
|
|
</ul> |
|
|
|
</div> |
|
|
|
<div class="main"> |
|
|
|
<div><a href="{{about}}">ABOUT</a></div> |
|
|
|
<div class="main-column-left"> |
|
|
|
|
|
|
|
<div id="listofpeople"> |
|
|
@ -263,8 +262,8 @@ $.ajax({ |
|
|
|
</div> |
|
|
|
|
|
|
|
<!-- submit data --> |
|
|
|
|
|
|
|
<button id="listoffiles" style="margin-top: 11em" >Print!</button> |
|
|
|
<button id="about">About</button> |
|
|
|
<button id="listoffiles">Print</button> |
|
|
|
|
|
|
|
|
|
|
|
<br> |
|
|
@ -275,12 +274,12 @@ $.ajax({ |
|
|
|
{% for item in file['librarian'] %} |
|
|
|
{% if item == querylibrarian and urlmethod == []%} |
|
|
|
{% set show_file = file['debrisname'] %} |
|
|
|
<span class="file-names" id="{{show_file}}">{{show_file}}</span> |
|
|
|
<span class="file-names" id="{{show_file}}">{{show_file}}</span><br> |
|
|
|
{% elif item == querylibrarian %} |
|
|
|
{% for urlmeth in urlmethod %} |
|
|
|
{% if urlmeth.lower() == file['method'].lower() %} |
|
|
|
{% set show_file = file['debrisname'] %} |
|
|
|
<span class="file-names" id="{{show_file}}">{{show_file}}</span> |
|
|
|
<span class="file-names" id="{{show_file}}">{{show_file}}</span><br> |
|
|
|
{% endif %} |
|
|
|
{% endfor %} |
|
|
|
{% endif %} |
|
|
@ -293,7 +292,7 @@ $.ajax({ |
|
|
|
{% for file in filetoname_dict %} |
|
|
|
{% if querymethod.lower() == file['method'].lower()%} |
|
|
|
{% set show_file = file['debrisname'] %} |
|
|
|
<span class="file-names" id="{{show_file}}">{{show_file}}</span> |
|
|
|
<span class="file-names" id="{{show_file}}">{{show_file}}</span><br> |
|
|
|
{% endif %} |
|
|
|
{% endfor %} |
|
|
|
{% endfor %} |
|
|
@ -301,9 +300,8 @@ $.ajax({ |
|
|
|
</div> |
|
|
|
|
|
|
|
<div class="main-column-right"> |
|
|
|
<a href="{{ url_for('static', filename='realjson.json') }}">test link</a> |
|
|
|
<!--<a href="{{ url_for('static', filename='realjson.json') }}">test link</a>--> |
|
|
|
<ul class="name-elements"> |
|
|
|
<p>hello world</p> |
|
|
|
</ul> |
|
|
|
|
|
|
|
{% block content %} |
|
|
|