﻿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
30180	@register.inclusion_tag, Character limit occurs when rendering text, localhost	Zafer ÇELİK	nobody	"Hi,

I get a character limitation when I want to render the text bu using @register.inclusion_tag ( custom tags )

These character limits; 46 ( when {% for...), 62 ( using {% with... ), 117 ( directly with text )

When these limits are exceeded, the server is shutting down automatically and does not indicate any errors. 

When the number of characters is below the specified limit, before I reboot the server ( manage.py runserver ), then the site is running ( 127.0.0.1:8000 )


I want to render text as long as I want, without limiting the number of characters.

Can I do that? How?


templatetags/custom_tags.py
{{{
@register.inclusion_tag('tags/metin_deneme.html')
def metin_gonder(metin):
    return { 'metin': metin }
}}}

templates/index.html
{{{
{% metin_gonder 'ğüışçöÖÇŞİÜĞ Arama Yaptığınız Ürünler Fazla Olunca Ne Olacak Burası Sınır Mı Alt Satıra Geçti Devam Hala Mı Daha Fazl' %}<!-- 117 characters -->
}}}

templates/tags/metin_deneme.html
{{{
<h3>{{ metin }}</h3>
}}}


Please help me




"	Bug	closed	Template system	2.1	Normal	worksforme	inclusion_tag, characters, limit, custom tag, localhost		Unreviewed	0	0	0	0	0	0
