Skip to content

Commit

Permalink
Added tooltip description for sorting strategy
Browse files Browse the repository at this point in the history
  • Loading branch information
KoalaGeo committed Mar 19, 2024
1 parent 1d881d1 commit 26dff7f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion app/static/js/htmlView.js
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ agsHtml.displayFileResult=function(fileResult,ix){
xhtml=xhtml + "<ul class='fileResSummary'>";

if(summaries.length === 0){
xhtml=xhtml + "<li>No summary generated due to errors reading file (see below) or BGS validation not selected (required for summary)</li>";
xhtml=xhtml + "<li>No summary generated due to errors reading file (see below)</li>";
};

if(fileResult.additional_metadata.bgs_all_groups){
Expand Down
10 changes: 5 additions & 5 deletions app/templates/landing_page.html
Original file line number Diff line number Diff line change
Expand Up @@ -166,13 +166,13 @@ <h2>AGS Converter</h2>
<fieldset>
<legend>Sort worksheets in .xlsx file using a sorting strategy <strong>(Warning: .ags to .xlsx only. The original group order will be lost)</strong></legend>
<input type="radio" id="default" name="sort_tables" value="default" checked="checked">
<label for="default">None (Maintain Input File Order)</label><br>
<input type="radio" id="dictionary" name="sort_tables" value="dictionary">
<label for="dictionary">File Dictionary</label><br>
<label for="default" class="tooltip">None<span class="tooltiptext">Maintains Input File Order</span></label><br>
<input type="radio" id="alphabetical" name="sort_tables" value="alphabetical">
<label for="alphabetical">Alphabetical</label><br>
<label for="alphabetical" class="tooltip">Alphabetical<span class="tooltiptext">Group Names</span></label><br>
<input type="radio" id="dictionary" name="sort_tables" value="dictionary">
<label for="dictionary" class="tooltip">Dictionary<span class="tooltiptext">Standard dictionary defined in TRAN_AGS is used to sort standard groups and the custom dictionary is used for user-defined groups. User-defined groups will appear after standard groups</span></label><br>
<input type="radio" id="hierarchical" name="sort_tables" value="hierarchical">
<label for="hierarchical">AGS Standard Hierarchy</label><br>
<label for="hierarchical" class="tooltip">AGS Standard Hierarchy<span class="tooltiptext">Order as follows: 11 groups outside the PROJ hierarchy appear first. 10 of these are described in Section 3.1 of the standard with the addition of LBST as it is the child of LBSG. Groups under PROJ appear next. Groups which don't belong to either of the previous categories appear last</span></label><br>
</fieldset>
<br>
<fieldset>
Expand Down

0 comments on commit 26dff7f

Please sign in to comment.