atr/templates/committee-view.html [61:99]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
{{ algorithms[key.algorithm] }} ({{ key.length }} bits) |
Created |
{{ key.created.strftime("%Y-%m-%d %H:%M:%S") }} |
Expires |
{% if key.expires %}
{% set days_until_expiry = (key.expires - now).days %}
{% if days_until_expiry < 0 %}
{{ key.expires.strftime("%Y-%m-%d %H:%M:%S") }}
Expired
{% elif days_until_expiry <= 30 %}
{{ key.expires.strftime("%Y-%m-%d %H:%M:%S") }}
Expires in {{ days_until_expiry }} days
{% else %}
{{ key.expires.strftime("%Y-%m-%d %H:%M:%S") }}
{% endif %}
{% else %}
Never
{% endif %}
|
User ID |
{{ key.declared_uid or 'Not specified' }} |
{% endfor %}
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
atr/templates/project-view.html [75:113]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
{{ algorithms[key.algorithm] }} ({{ key.length }} bits) |
Created |
{{ key.created.strftime("%Y-%m-%d %H:%M:%S") }} |
Expires |
{% if key.expires %}
{% set days_until_expiry = (key.expires - now).days %}
{% if days_until_expiry < 0 %}
{{ key.expires.strftime("%Y-%m-%d %H:%M:%S") }}
Expired
{% elif days_until_expiry <= 30 %}
{{ key.expires.strftime("%Y-%m-%d %H:%M:%S") }}
Expires in {{ days_until_expiry }} days
{% else %}
{{ key.expires.strftime("%Y-%m-%d %H:%M:%S") }}
{% endif %}
{% else %}
Never
{% endif %}
|
User ID |
{{ key.declared_uid or 'Not specified' }} |
{% endfor %}
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -