{% extends "admin/base_site.html" %} {% load i18n %} {% block title %}{{ title }} | {{ site_title|default:_('Django site admin') }}{% endblock %} {% block content %}

{{ title }}

Note: This operation only affects the database and works even if servers are unreachable. Server connectivity is not required for moving links between servers.
{% if messages %} {% for message in messages %}
{{ message }}
{% endfor %} {% endif %}
{% csrf_token %}

Comment Transformation (Optional)

Regular Expression Help & Examples:

Format: pattern -> replacement

Common Examples:
  • ^(.*)$ -> [FROM RU] $1 - Add prefix to all comments
  • ^(.*)$ -> $1 (moved) - Add suffix to all comments
  • ^$ -> Default Device - Replace empty comments
  • phone -> mobile - Replace specific word
Advanced Examples:
  • ^(.+) - (.+)$ -> $2: $1 - Swap parts separated by " - "
  • (\d{4})-(\d{2})-(\d{2}) -> $3/$2/$1 - Change date format
  • ^(.{1,20}).*$ -> $1... - Truncate long comments
Tips:
  • Use $1, $2, $3... for captured groups (auto-converted to Python)
  • Use ^ for start, $ for end of string
  • Preview shows result; leave empty to keep original comments
{% endblock %}