aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.rst2
-rw-r--r--db_create.py2
-rw-r--r--pyaggr3g470r/templates/layout.html2
-rw-r--r--pyaggr3g470r/views.py1
4 files changed, 4 insertions, 3 deletions
diff --git a/README.rst b/README.rst
index ac39c0e8..36ab9a65 100644
--- a/README.rst
+++ b/README.rst
@@ -29,7 +29,7 @@ Deployment
This application can be deployed on Heroku or on a traditional server.
-After installation, you will be able to connect with the email *root@pyAggr3g470r.localhost* and the password *root_password*.
+After installation, you will be able to connect with the email *root@pyAggr3g470r.localhost* and the password *password*.
Deploying the application on Heroku
diff --git a/db_create.py b/db_create.py
index 7cdd6411..5e803fc5 100644
--- a/db_create.py
+++ b/db_create.py
@@ -69,7 +69,7 @@ role_user = Role(name="user")
user1 = User(firstname="admin", lastname="admin",
email="root@pyAggr3g470r.localhost",
- pwdhash=generate_password_hash("root_password"))
+ pwdhash=generate_password_hash("password"))
user1.roles.extend([role_admin, role_user])
db.session.add(user1)
diff --git a/pyaggr3g470r/templates/layout.html b/pyaggr3g470r/templates/layout.html
index 8ed66d89..d0656d32 100644
--- a/pyaggr3g470r/templates/layout.html
+++ b/pyaggr3g470r/templates/layout.html
@@ -78,6 +78,8 @@
</li>
</ul>
</li>
+ {% else %}
+ <li><a href="/about/">{{ _('About') }}</a></li>
{% endif %}
</ul>
</div><!-- /.navbar-collapse -->
diff --git a/pyaggr3g470r/views.py b/pyaggr3g470r/views.py
index c8e268bc..3a6cd9ad 100644
--- a/pyaggr3g470r/views.py
+++ b/pyaggr3g470r/views.py
@@ -223,7 +223,6 @@ def fetch(feed_id=None):
return redirect(redirect_url())
@app.route('/about/', methods=['GET'])
-@login_required
def about():
"""
'About' page.
bgstack15