Chapter 12: Dates and Times (v0.12)

This commit is contained in:
Miguel Grinberg 2017-09-28 22:28:20 -07:00
parent 542fa42312
commit a650e6f989
No known key found for this signature in database
GPG Key ID: 36848B262DF5F06C
4 changed files with 11 additions and 2 deletions

View File

@ -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']:

View File

@ -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>

View File

@ -48,3 +48,8 @@
{% block app_content %}{% endblock %}
</div>
{% endblock %}
{% block scripts %}
{{ super() }}
{{ moment.include_moment() }}
{% endblock %}

View File

@ -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>