From 5a32dcfba5176320e1942fe3453c21ca10be9c0f Mon Sep 17 00:00:00 2001 From: Miguel Grinberg <miguel.grinberg@gmail.com> Date: Thu, 28 Sep 2017 22:28:20 -0700 Subject: [PATCH] Chapter 12: Dates and Times (v0.12) --- app/__init__.py | 2 ++ app/templates/_post.html | 2 +- app/templates/base.html | 5 +++++ app/templates/user.html | 4 +++- 4 files changed, 11 insertions(+), 2 deletions(-) diff --git a/app/__init__.py b/app/__init__.py index f814d28..3ed606d 100644 --- a/app/__init__.py +++ b/app/__init__.py @@ -7,6 +7,7 @@ from flask_migrate import Migrate from flask_login import LoginManager from flask_mail import Mail from flask_bootstrap import Bootstrap +from flask_moment import Moment from config import Config app = Flask(__name__) @@ -17,6 +18,7 @@ login = LoginManager(app) login.login_view = 'login' mail = Mail(app) bootstrap = Bootstrap(app) +moment = Moment(app) if not app.debug: if app.config['MAIL_SERVER']: diff --git a/app/templates/_post.html b/app/templates/_post.html index 29caf6f..b5b6022 100644 --- a/app/templates/_post.html +++ b/app/templates/_post.html @@ -9,7 +9,7 @@ <a href="{{ url_for('user', username=post.author.username) }}"> {{ post.author.username }} </a> - says: + said {{ moment(post.timestamp).fromNow() }}: <br> {{ post.body }} </td> diff --git a/app/templates/base.html b/app/templates/base.html index 053e93b..afb8e94 100644 --- a/app/templates/base.html +++ b/app/templates/base.html @@ -48,3 +48,8 @@ {% block app_content %}{% endblock %} </div> {% endblock %} + +{% block scripts %} + {{ super() }} + {{ moment.include_moment() }} +{% endblock %} diff --git a/app/templates/user.html b/app/templates/user.html index b039db2..76dfd60 100644 --- a/app/templates/user.html +++ b/app/templates/user.html @@ -7,7 +7,9 @@ <td> <h1>User: {{ user.username }}</h1> {% if user.about_me %}<p>{{ user.about_me }}</p>{% endif %} - {% if user.last_seen %}<p>Last seen on: {{ user.last_seen }}</p>{% endif %} + {% if user.last_seen %} + <p>Last seen on: {{ moment(user.last_seen).format('LLL') }}</p> + {% endif %} <p>{{ user.followers.count() }} followers, {{ user.followed.count() }} following.</p> {% if user == current_user %} <p><a href="{{ url_for('edit_profile') }}">Edit your profile</a></p>