Skip to content

Commit

Permalink
Changed Readme
Browse files Browse the repository at this point in the history
Changed branding on login/ register (used to show old app name
‘altcoinapi’)
Changed titles of all pages so they have a ‘|’
Added extra references on about page so they are not just in the code
itself
  • Loading branch information
Ryan-Gordon committed Dec 19, 2016
1 parent d2b6ced commit ff3f84e
Show file tree
Hide file tree
Showing 12 changed files with 28 additions and 11 deletions.
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,16 @@ There is also a charting view available for your currencies which utilises Chart

The UI of the app is mobile friendly and the tables change to vertical for smaller screens less than 768px
Please see [user guide](#User-Guide)

The app is now hosted and working on heroku. To visit the app please head to https://financial-portfolio-flask.herokuapp.com
From initial testing the pages load blazingly quick, I take some pride in that.

#### Features
+ Now working on heroku

+ Majority of programming language done in Python. Github says 98% python.
+ Responsive Design
+ Optimized page load speed
+ Mobile Friendly - Tested on iPad Mini, Samsung J3
+ Abstracted models - can add other assets
+ Currently supports over 100 Cryptocurrencies.
Expand Down Expand Up @@ -57,7 +64,8 @@ API routes are available for a number of currencies to get there you will need t
+ <del> EXTRA: Stock trading </del>
+ <del>Dashboard page </del >
+ <del>Charting for assets </del>
+ Host webapp on a hosting provider after grading.
+ <del>Host webapp on a hosting provider after grading.</del>
+ Some form of real time price updating via Redis. API calls and results stored in redis for real-time pricing and update SQL db every so often.



Expand Down
Binary file modified __pycache__/webapp.cpython-35.pyc
Binary file not shown.
6 changes: 5 additions & 1 deletion static/css/simple-sidebar.css
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,9 @@ body {
#wrapper nav a {
color: #ffffff;
}
#wrapper nav a:hover{
background-color: #325C74;
}
/* By setting the color to white above, nested UL tags get this also
* I fixed it with this tag which targets the sepcific elements giving issues */
#wrapper nav ul li ul a {
Expand Down Expand Up @@ -96,7 +99,7 @@ body {
.sidebar-nav li a:hover {
text-decoration: none;
color: #fff;
background: blue;
background: #325C74;
}

.sidebar-nav li a:active,
Expand All @@ -117,6 +120,7 @@ body {
.sidebar-nav>.sidebar-brand a:hover {
color: #fff;
background: none;
background-color: #325C74;
}

.footer {
Expand Down
5 changes: 4 additions & 1 deletion templates/about.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends "index.html" %} {% block title %}Currencies{% endblock %} {% block head %} {{ super() }} {% endblock %} {% block content %}
{% extends "index.html" %} {% block title %}About |{% endblock %} {% block head %} {{ super() }} {% endblock %} {% block content %}
<div class="row">
<div class="col-lg-12">
<h1>Created with Flask!!</h1>
Expand All @@ -20,6 +20,9 @@ <h3>Mentions</h3>
<li><a href="https://bittrex.com/api/v1.1/public/getmarketsummaries"> Bittrex.com API</a></li>
<li><a href="http://finance.google.com/finance/info?client=ig&q=NASDAQ%3AAAPL"> Google Finance API</a></li>
<li><a href="http://api.fixer.io/latest?base=USD"> Fixer IO Currency Prices</a></li>
<li><a href="https://startbootstrap.com/template-overviews/freelancer/"> Start bootstrap freelancer</a></li>
<li><a href="https://startbootstrap.com/template-overviews/simple-sidebar/"> Start bootstrap simple black and white sidebar</a></li>
<li><a href="http://bootsnipp.com/snippets/featured/no-more-tables-respsonsive-table">Bootsnipp responsive table for mobile only (Modified to includes buttons etc.)</a></li>
</ul>

<a href="/dashboard" class="btn btn-default">Back to Dashboard</a>
Expand Down
2 changes: 1 addition & 1 deletion templates/charts.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends "index.html" %} {% block title %}Charts{% endblock %} {% block head %} {{ super() }} {% endblock %} {% block content %}
{% extends "index.html" %} {% block title %}Charts |{% endblock %} {% block head %} {{ super() }} {% endblock %} {% block content %}
<script src='https://cdnjs.cloudflare.com/ajax/libs/Chart.js/1.0.2/Chart.min.js'></script>
<h1>Flask Chart.js</h1>
<!-- bar chart canvas element -->
Expand Down
4 changes: 3 additions & 1 deletion templates/contact.html
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
{% extends "index.html" %} {% block title %}Currencies{% endblock %} {% block head %} {{ super() }} {% endblock %} {% block content %}
{% extends "index.html" %} {% block title %}Contact |{% endblock %} {% block head %} {{ super() }} {% endblock %} {% block content %}
<div class="row">
<div class="col-lg-12">
<h1>Contact Us</h1>
<p>If you want to get in touch about the webapp. Feel free to email me at g00326349@gmit.ie</p>
<p>This project is open source so you may make any changes without requesting permission</p>
<p>If you are using part of this app in your own code please leave a reference to the github repo : https://github.com/FlashGordon95/Financial-Portfolio-Flask</p>
<p>Please head to the <a href="https://github.com/FlashGordon95/Financial-Portfolio-Flask">Github Repo</a> for any new releases</p>
<p>Please give the repo a star if you can!</p>

</div>
</div>

Expand Down
2 changes: 1 addition & 1 deletion templates/currencies.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends "index.html" %} {% block title %}Currencies{% endblock %} {% block head %} {{ super() }}
{% extends "index.html" %} {% block title %}Currencies |{% endblock %} {% block head %} {{ super() }}
<link rel="stylesheet" href="{{ url_for('static', filename='css/investment-tables.css') }}">
{% endblock %}
{% block content %}
Expand Down
2 changes: 1 addition & 1 deletion templates/dashboard.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends "index.html" %} {% block title %}Dashboard{% endblock %} {% block head %} {{ super() }} {% endblock %} {% block content %}
{% extends "index.html" %} {% block title %}Dashboard |{% endblock %} {% block head %} {{ super() }} {% endblock %} {% block content %}
<div class="row">
<div class="col-lg-12">
<h1>Welcome to your financial portfolio</h1>
Expand Down
2 changes: 1 addition & 1 deletion templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<meta name="description" content="A webapp for tracking of assets and investments">
<meta name="author" content="Ryan Gordon">

<title>{% block title %}{% endblock %} | Financial Portfolio</title>
<title>{% block title %}{% endblock %} Financial Portfolio</title>

<!-- Bootstrap Core CSS -->
<link href="static/css/bootstrap/bootstrap.min.css" rel="stylesheet">
Expand Down
2 changes: 1 addition & 1 deletion templates/security/login_user.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<!-- Navigation Bar Header -->
<div class="navbar-header">
<!-- Navigation Bar Brand -->
<a class="navbar-brand" href="#" style="color: #ffffff;"> Altcoin Prices </a>
<a class="navbar-brand" href="#" style="color: #ffffff;"> Financial Portfolio Flask </a>
</div>
<!-- Navigation Bar Buttons -->
<div class="collapse navbar-collapse">
Expand Down
2 changes: 1 addition & 1 deletion templates/security/register_user.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<!-- Navigation Bar Header -->
<div class="navbar-header">
<!-- Navigation Bar Brand -->
<a class="navbar-brand" href="#" style="color: #ffffff;"> Altcoin Prices </a>
<a class="navbar-brand" href="#" style="color: #ffffff;"> Financial Portfolio Flask </a>
</div>
<!-- Navigation Bar Buttons -->
<div class="collapse navbar-collapse">
Expand Down
2 changes: 1 addition & 1 deletion templates/stocks.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends "index.html" %} {% block title %}Stocks{% endblock %} {% block head %} {{ super() }}
{% extends "index.html" %} {% block title %}Stocks |{% endblock %} {% block head %} {{ super() }}
<link rel="stylesheet" href="{{ url_for('static', filename='css/investment-tables.css') }}">
{% endblock %}
{% block content %}
Expand Down

0 comments on commit ff3f84e

Please sign in to comment.