-
-
Notifications
You must be signed in to change notification settings - Fork 584
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adds latest weight details to overview #147
Conversation
Ah, I see, those are coding style errors. "pep8" is more or less the official coding style for python projects with the idea that when you switch between projects, the code layout remains the same. There is a tool, also called pep8, that automatically checks the code. You can install it in your virtual environment ( |
And another thing, don't forget to add yourself to AUTHORS.rst :) |
@@ -38,6 +38,24 @@ | |||
<div id="weight_diagram"></div> | |||
|
|||
{% if is_owner %} | |||
{% if last_five_weight_entries_details %} | |||
<table border="1" style="width:100%"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
better do here <table class="table">
, we can use the bootstrap CSS classes
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Awesome, incorporating it now.
Adds latest weight details to overview
Looks good! |
No description provided.