{% extends 'base.html' %} {% load i18n %} {% load static %} {% block content %}

{% trans "Link Details" %} {% if '{' in link.original_url and '}' in link.original_url %} {% trans "Template" %} {% elif link.link_type == 'LINK' %} {% trans "Link" %} {% else %} {% trans "Custom" %} {% endif %}

{% trans "Alias" %}
{{ link.alias }}
{% trans "Click Count" %}
{{ link.click_count }}
{% trans "Created At" %}
{{ link.created_at|date:"Y-m-d H:i" }}
{% trans "Updated At" %}
{{ link.updated_at|date:"Y-m-d H:i" }}
{% if link.link_type == 'LINK' %}
{% trans "Original URL" %}
{{ link.original_url }}
{% endif %} {% if link.description %}
{% trans "Description" %}
{{ link.description }}
{% endif %} {% if link.tags.exists %}
{% trans "Tags" %}
{% for tag in link.tags.all %} {% with number=forloop.counter %} {{ tag.name }} {% endwith %} {% endfor %}
{% endif %}
{% if link.link_type == 'CUSTOM' %}

{% trans "Custom Content" %}

{{ rendered_text|safe }}
{% endif %}

{% trans "Click Statistics" %} - {{ period_name }}

{% trans "URL Change History" %}

{% if change_logs %}
    {% for log in change_logs %}
  • {% trans "URL changed at" %} {{ log.changed_at|date:"Y-m-d H:i" }}

    {{ log.old_url }}

    {{ log.new_url }}

  • {% endfor %}
{% else %}

{% trans "No URL changes recorded." %}

{% endif %}
{% endblock %} {% block extra_js %} {% endblock %} {% block extra_css %} {% endblock %}