{% load base_filters %} {% load base_tags %} {% load resume_tags %} {% load perm_tags %} {% load tagging_tags %} {% load i18n %} {% has_perm user resumes.change_resume resume as can_edit %} {% has_perm user resumes.delete_resume resume as can_delete %} {% tags_hash_tags resume as hash_tags %} {% tags_strip_hash resume as nonhash_tags %}
{% if nonhash_tags or hash_tags %}
{% if nonhash_tags or can_edit %}Tags: {% endif %} {% for tag in nonhash_tags %} {{ tag }}{% if not forloop.last %}, {% endif %} {% endfor %} {% if hash_tags and can_edit %} {% for tag in hash_tags %} {% if forloop.first and nonhash_tags %}| {% endif %}{{ tag }}{% if not forloop.last %}, {% endif %} {% endfor %} {% endif %}
{% endif %} {% if user.is_authenticated %} {% endif %}
{% trans "Print" %}
{% if can_edit %}
{% endif %}