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

{% if form.instance.pk %}{% trans "Edit Link" %}{% else %}{% trans "New Link" %}{% endif %}

{% trans "Custom type allows you to create a link with custom HTML content. Use this when you want to display a message or custom content instead of redirecting." %}

{% trans "Template type allows you to create dynamic URLs with parameters. Use {query, default=value} syntax in the URL." %}

{% trans "Example: https://google.com/search?q={query, default=hello}" %}

{% csrf_token %} {% for field in form %} {% if field.name != 'link_type' %} {% endif %} {% endfor %}
{% trans "Cancel" %}
{% endblock %} {% block extra_js %} {% endblock %}