{% extends "base.html" %} {% load semiramis_templatetags %} {% load i18n %} {% block title %} :: {% trans "Object" %} [{{ item.name|escape }}]"{% endblock %} {% block feeds %} {% ifequal view 'track'%} {% endifequal %} {% ifequal view 'mark'%} {% endifequal %} {% endblock feeds %} {% block content %} {% ifequal view 'track'%}

:: {% trans "Track" %} ::

{% endifequal %} {% ifequal view 'mark'%}

:: {% trans "Mark" %} ::

{% endifequal %}
Icon {{ item.name|escape }}
{% trans "Added on" %} {{ item.date|date_format }} {% trans "by" %} {{ item.user }}
{% if item.lat and item.lng %}
{% trans "Latitude" %} {{ item.lat }}
{% trans "Longitude" %} {{ item.lng }}
{% endif %} {{ item.text|babel }}
{% trans "Edit" %} {% trans "Delete" %}
{% ifequal view 'track'%}

{% trans "Export" %}

{% trans "Click the link bellow to export this track to selected file type." %}
{% endifequal %} {% ifequal view 'mark' %}

{% trans "Photos" %}

{% if photos %}
{% for photo in photos %} {{ photo.name|escape }} {% endfor %}
{% else %}
{% trans "There are no photos. If you are logged in you can add them." %}
{% endif %}
{% trans "Photos" %} RSS {% trans "Photos" %} Atom
{% endifequal %}

{% trans "Comments" %}

{% if comments %} {% for comment in comments %}
{{ comment.text|babel }}
{% trans "Added on " %} {{ comment.date|date:"Y-m-d H:i:s" }} {% trans "by " %}{{ comment.user|escape }} {% trans "Edit" %} {% trans "Delete" %}
{% endfor %} {% else %}
{% trans "There are no comments. If you are logged in you can be the first." %}
{% endif %}
{% trans "Comments" %} RSS {% trans "Comments" %} Atom
{% if comment_form %}

{% trans "Add a comment" %}

{{ comment_form }}
 
{% trans "Preview" %}
{% endif %} {% if photo_form %}

{% trans "Add a photo" %}

{{ photo_form }}
 
{% endif %} {% endblock content%}