diff --git a/{{cookiecutter.app_name}}/{{cookiecutter.app_name}}/templates/public/home.html b/{{cookiecutter.app_name}}/{{cookiecutter.app_name}}/templates/public/home.html index 4a948751f60fa04c7cbd06df36ee092c9a97bc42..3485a6da722d7097202acbd3aead74d4e22980c1 100644 --- a/{{cookiecutter.app_name}}/{{cookiecutter.app_name}}/templates/public/home.html +++ b/{{cookiecutter.app_name}}/{{cookiecutter.app_name}}/templates/public/home.html @@ -20,12 +20,12 @@ <div class="col-lg-4"> <h2><i class="fa fa-flask"></i> SQLAlchemy</h2> <p>SQLAlchemy is the Python SQL toolkit and Object Relational Mapper that gives application developers the full power and flexibility of SQL.</p> - <p><a href="http://www.sqlalchemy.org/" class="btn btn-default" href="#">Official website »</a></p> + <p><a href="http://www.sqlalchemy.org/" class="btn btn-default">Official website »</a></p> </div> <div class="col-lg-4"> <h2><i class="fa fa-edit"></i> WTForms</h2> <p>WTForms is a flexible forms validation and rendering library for python web development.</p> - <p><a href="http://wtforms.simplecodes.com/" class="btn btn-default" href="#">Official website »</a></p> + <p><a href="http://wtforms.simplecodes.com/" class="btn btn-default">Official website »</a></p> </div> </div><!-- /.row --> </div> diff --git a/{{cookiecutter.app_name}}/{{cookiecutter.app_name}}/templates/users/members.html b/{{cookiecutter.app_name}}/{{cookiecutter.app_name}}/templates/users/members.html index dc2b897d913319796ff08ead219fd65a13e560ea..5179bfb62b6ac2f9bf6eb22677d51f9d14c7157b 100644 --- a/{{cookiecutter.app_name}}/{{cookiecutter.app_name}}/templates/users/members.html +++ b/{{cookiecutter.app_name}}/{{cookiecutter.app_name}}/templates/users/members.html @@ -1,7 +1,7 @@ {% raw %} {% extends "layout.html" %} {% block content %} - <h1>Welcome {{ session.username }}</h1> + <h1>Welcome {{ current_user.username }}</h1> <h3>This is the members-only page.</h3> {% endblock %} {% endraw%}