From bb5f456e6ebc7c2f2a26a7041103edc07c3fe00e Mon Sep 17 00:00:00 2001 From: Stephan Porada <sporada@uni-bielefeld.de> Date: Tue, 11 Feb 2020 16:13:00 +0100 Subject: [PATCH] Remove useless row html div --- app/templates/corpora/analyse_corpus.html.j2 | 46 ++++++++++---------- 1 file changed, 22 insertions(+), 24 deletions(-) diff --git a/app/templates/corpora/analyse_corpus.html.j2 b/app/templates/corpora/analyse_corpus.html.j2 index de456782..ae5d4297 100644 --- a/app/templates/corpora/analyse_corpus.html.j2 +++ b/app/templates/corpora/analyse_corpus.html.j2 @@ -153,30 +153,28 @@ </div> <!-- table showing the query results --> -<div class="row"> - <div class="col s12" id="recieved-query-results"> - <div class="card"> - <div class="card-content" id="result-list"> - <span class="card-title">Query Results</span> - <p id="query-results-metadata"> - <button id="export-query-results" class="waves-effect waves-light btn-small right hide" type="submit">Export Results<i class="material-icons right">file_download</i></button> - </p> - <ul class="pagination paginationTop"></ul> - <table class="responsive-table highlight"> - <thead> - <tr> - <th style="width: 2%">Nr.</th> - <th style="width: 3%">Title</th> - <th style="width: 25%">Left context</th> - <th style="width: 45%">Match</th> - <th style="width: 25%">Right Context</th> - </tr> - </thead> - <tbody class="list" id="query-results"> - </tbody> - </table> - <ul class="pagination paginationBottom"></ul> - </div> +<div class="col s12" id="recieved-query-results"> + <div class="card"> + <div class="card-content" id="result-list"> + <span class="card-title">Query Results</span> + <p id="query-results-metadata"> + <button id="export-query-results" class="waves-effect waves-light btn-small right hide" type="submit">Export Results<i class="material-icons right">file_download</i></button> + </p> + <ul class="pagination paginationTop"></ul> + <table class="responsive-table highlight"> + <thead> + <tr> + <th style="width: 2%">Nr.</th> + <th style="width: 3%">Title</th> + <th style="width: 25%">Left context</th> + <th style="width: 45%">Match</th> + <th style="width: 25%">Right Context</th> + </tr> + </thead> + <tbody class="list" id="query-results"> + </tbody> + </table> + <ul class="pagination paginationBottom"></ul> </div> </div> </div> -- GitLab