{{ objective.get_taxonomy_level_display }} |
{{ objective.objective.ability }} |
{{ objective.created }} |
{% if user.is_authenticated %}
{% if not user_is_author_of_object and not user_contribute %}
{% with "learning:"|add:object_name|add:"/detail/objective/validation/change" as target_url %}
|
{% endwith %}
{% else %}
{{ objective.objective.author }} |
{% if "change_objective_"|add:object_name in object_perms %}
{% with "learning:"|add:object_name|add:"/detail/objective/change" as target_url %}
{% include "learning/taxonomy/objective/detail/objective_change.html" with object=object objective=objective target_url=target_url %}
{% endwith %}
{% with "learning:"|add:object_name|add:"/detail/objective/remove" as target_url %}
{% include "learning/taxonomy/objective/detail/objective_remove.html" with object=object objective=objective target_url=target_url %}
{% endwith %}
|
{% endif %}
{% endif %}
{% endif %}