{% extends 'base.html' %} {% block title %}{% if object %}Редактиране{% else %}Добавяне{% endif %} на Ключова Дума{% endblock %} {% block content %}

{% if object %}Редактиране{% else %}Добавяне{% endif %} на Ключова Дума

{% csrf_token %}
{{ form.name }} {% if form.name.errors %}
{{ form.name.errors }}
{% endif %}
{{ form.keyword }} {% if form.keyword.errors %}
{{ form.keyword.errors }}
{% endif %} Текст, фраза или regex патърн за търсене
{{ form.description }} {% if form.description.errors %}
{{ form.description.errors }}
{% endif %}
{{ form.keyword_type }} {% if form.keyword_type.errors %}
{{ form.keyword_type.errors }}
{% endif %} exact, regex, phrase, domain, email, phone
{{ form.confidence_score }} {% if form.confidence_score.errors %}
{{ form.confidence_score.errors }}
{% endif %}
{% if form.is_active.errors %}
{{ form.is_active.errors }}
{% endif %}
{% if form.case_sensitive.errors %}
{{ form.case_sensitive.errors }}
{% endif %}
{% if form.auto_approve.errors %}
{{ form.auto_approve.errors }}
{% endif %} Автоматично одобряване при увереност ≥ 80%
Отказ
{% endblock %}