Skip to content

Commit

Permalink
Add default selection for sorting strategy
Browse files Browse the repository at this point in the history
  • Loading branch information
KoalaGeo committed Mar 7, 2024
1 parent 9e6ba29 commit 4c7a57e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/templates/landing_page.html
Original file line number Diff line number Diff line change
Expand Up @@ -168,14 +168,14 @@ <h2>AGS Converter</h2>
<form action="/convert/" enctype="multipart/form-data" method="post" id="convertForm">
<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>
<input type="radio" id="alphabetical" name="sort_tables" value="alphabetical">
<label for="alphabetical">Alphabetical</label>
<input type="radio" id="hierarchical" name="sort_tables" value="hierarchical">
<label for="hierarchical">AGS Standard Hierarchy</label>
<input type="radio" id="default" name="sort_tables" value="default" checked>
<label for="default">None (Maintain Input File Order)</label><br>
</fieldset>
<br>
<fieldset>
Expand Down

0 comments on commit 4c7a57e

Please sign in to comment.