-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added CORS and fixed a bug converting floats with , as decimal sepaator
- Loading branch information
Thomas Hanke
committed
Nov 25, 2022
1 parent
780ceaf
commit 107e38d
Showing
4 changed files
with
11 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,7 @@ flask | |
flask-bootstrap | ||
flask_wtf | ||
flask_swagger_ui | ||
flask_cors | ||
wtforms | ||
pandas | ||
html5lib |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,13 +5,6 @@ | |
{{ super() }} | ||
<link rel="shortcut icon" href="#"> | ||
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous"> | ||
<script> | ||
window.dataLayer = window.dataLayer || []; | ||
function gtag(){dataLayer.push(arguments);} | ||
gtag('js', new Date()); | ||
|
||
gtag('config', 'your_analytiks_tag'); | ||
</script> | ||
{% endblock %} | ||
|
||
{% block html_attribs %} lang="en"{% endblock %} | ||
|
@@ -56,7 +49,7 @@ <h1 class="display-5 fw-bold">CSVtoCSVW</h1> | |
<div id="enc_help" class="form-text">{{ start_form.encoding_sel.description }}</div> | ||
|
||
</div> | ||
<button class="form-group btn btn-primary btn-lg" type="submit">Start Conversion</button> | ||
<button id='submit' class="form-group btn btn-primary btn-lg" type="submit">Start Conversion</button> | ||
</form> | ||
|
||
</div> | ||
|