diff options
Diffstat (limited to 'pyaggr3g470r/templates/management.html')
-rw-r--r-- | pyaggr3g470r/templates/management.html | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/pyaggr3g470r/templates/management.html b/pyaggr3g470r/templates/management.html index ad2faada..2f95daaa 100644 --- a/pyaggr3g470r/templates/management.html +++ b/pyaggr3g470r/templates/management.html @@ -11,9 +11,16 @@ </div> <div class="jumbotron"> <h1>Your Profile</h1> - <p>Update your <a href="/profile/">profile</a>.</p> - <p>Member since {{ user.date_created.strftime('%A, %d %B %Y') }}.</p> - <p>Last seen: {{ user.last_seen.strftime('%A, %d %B %Y at %H:%M:%S') }}.</p> + <div class="row"> + <div class="col-md-6"> + <p>Update your <a href="/profile/">profile</a>.</p> + <p>Member since {{ user.date_created.strftime('%A, %d %B %Y') }}.</p> + <p>Last seen: {{ user.last_seen.strftime('%A, %d %B %Y at %H:%M:%S') }}.</p> + </div> + <div class="col-md-6"> + <img src="{{ user.email | gravatar }}" /> + </div> + </div> </div> <div class="jumbotron"> <h1>Import/export feeds</h1> |