﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
35917	add IrSlug converter	ahmadrezanavaie		"As an amateur, I requested to add a slug specifically for Persian and Arabic phrases that may also contain English to Django. These were the changes I made in the converters.py file. Do you think there are any issues?

The PR link : [https://github.com/django/django/pull/18826]
{{{
class IrSlugConverter(StringConverter):
    regex = ""[-a-zA-Z0-9_\u0600-\u06FF]+""


DEFAULT_CONVERTERS = {
    ""int"": IntConverter(),
    ""path"": PathConverter(),
    ""slug"": SlugConverter(),
    ""irslug"": IrSlugConverter(),
    ""str"": StringConverter(),
    ""uuid"": UUIDConverter(),
}
}}}"	New feature	new	Core (URLs)	5.1	Normal				Unreviewed	0	0	0	0	0	0
