Skip to content

Commit

Permalink
minor
Browse files Browse the repository at this point in the history
  • Loading branch information
mtill committed Sep 2, 2018
1 parent c2dce0a commit a40b52b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ web based HBCI banking software

## how to install
* pip3 install bottle (https://bottlepy.org/)
* jquery (http://jquery.com/) -- put this library into the "static" folder
* plotly for javascript (https://plot.ly/javascript/) -- put this library into the "static" folder
* jquery (http://jquery.com/) -- put this library into the "static" folder (filename: jquery-latest.min.js)
* plotly for javascript (https://plot.ly/javascript/) -- put this library into the "static" folder (filename: plotly-latest.min.js)

## how to use
* python3 index.py dev
Expand Down Expand Up @@ -44,3 +44,4 @@ CREATE INDEX category ON categories(category ASC);
sqlite3 my_database.sqlite ".backup backup_file.sqlite"
OR: sqlite3 my_database .dump > my_database.back
~~~~

2 changes: 1 addition & 1 deletion views/editCategories.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>konto - Kategorien bearbeiten</title>
<link rel="stylesheet" type="text/css" href="/static/style.css">
<script class="include" type="text/javascript" src="/static/jquery-3.3.1.min.js"></script>
<script class="include" type="text/javascript" src="/static/jquery-latest.min.js"></script>
<script class="include" type="text/javascript" src="/static/categorize.js"></script>
<script type="text/javascript">
function onItemCategorized(theid) {
Expand Down
2 changes: 1 addition & 1 deletion views/index.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>konto - Übersicht</title>
<link rel="stylesheet" type="text/css" href="/static/style.css">
<script class="include" type="text/javascript" src="/static/jquery-3.3.1.min.js"></script>
<script class="include" type="text/javascript" src="/static/jquery-latest.min.js"></script>
<script class="include" type="text/javascript" src="/static/categorize.js"></script>
<script src="/static/plotly-latest.min.js"></script>
<!-- <script src="https://cdn.plot.ly/plotly-latest.min.js"></script> -->
Expand Down

0 comments on commit a40b52b

Please sign in to comment.