Merge branch 'master' into live

This commit is contained in:
Kevin Morris 2022-02-04 15:58:06 -08:00
commit 8141f3ddc0
No known key found for this signature in database
GPG key ID: F7E46DED420788F3
2 changed files with 3 additions and 1 deletions

View file

@ -6,7 +6,7 @@ from typing import Any
# Publicly visible version of aurweb. This is used to display # Publicly visible version of aurweb. This is used to display
# aurweb versioning in the footer and must be maintained. # aurweb versioning in the footer and must be maintained.
# Todo: Make this dynamic/automated. # Todo: Make this dynamic/automated.
AURWEB_VERSION = "v6.0.4" AURWEB_VERSION = "v6.0.5"
_parser = None _parser = None

View file

@ -62,12 +62,14 @@
</td> </td>
{% endif %} {% endif %}
</tr> </tr>
{% if user.RegistrationTS %}
<tr> <tr>
<th>{% trans %}Registration date{% endtrans %}:</th> <th>{% trans %}Registration date{% endtrans %}:</th>
<td> <td>
{{ user.RegistrationTS.strftime("%Y-%m-%d") }} {{ user.RegistrationTS.strftime("%Y-%m-%d") }}
</td> </td>
</tr> </tr>
{% endif %}
{% if login_ts %} {% if login_ts %}
<tr> <tr>
<th>{% trans %}Last Login{% endtrans %}:</th> <th>{% trans %}Last Login{% endtrans %}:</th>