You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
{% load i18n %}
{% block first_login_message %}
{% if request.user.is_authenticated and request.user.is_first_login %}
< div class = "alert alert-danger help-message alert-dismissable" >
{% url 'users:user-first-login' as first_login_url %}
{% blocktrans %}
Your information was incomplete. Please click < a href = "{{ first_login_url }}" > this link < / a > to complete your information.
{% endblocktrans %}
< button aria-hidden = "true" data-dismiss = "alert" class = "close" type = "button" style = "outline: none;" > × < / button >
< / div >
{% endif %}
{% endblock %}
{% block update_public_key_message %}
{% if request.user.is_authenticated and not request.user.is_public_key_valid and not request.COOKIE.close_public_key_msg != '1' %}
< div class = "alert alert-danger help-message alert-dismissable" >
< button aria-hidden = "true" data-dismiss = "alert" class = "close" type = "button" onclick = "closePublicKeyMsg()" > × < / button >
{% url 'users:user-pubkey-update' as user_pubkey_update %}
{% blocktrans %}
Your ssh public key not set or expired. Please click < a href = "{{ user_pubkey_update }}" > this link < / a > to update
{% endblocktrans %}
< / div >
{% endif %}
{% endblock %}
{% if messages %}
{% for message in messages %}
< div class = "alert alert-{{ message.tags }} help-message" >
{{ message|safe }}
< button aria-hidden = "true" data-dismiss = "alert" class = "close" type = "button" style = "outline: none;" > × < / button >
< / div >
{% endfor %}
{% endif %}
< script >
function closePublicKeyMsg ( ) {
setCookie ( 'close_public_key_msg' , 1 )
}
< / script >