I have a template which ends up outputting about 700 input elements like this one:
<input class="ticket" size="3" maxlength="15" type="text" name="{{ ticket.id }}">
Together with calling the view function and rendering the template (generating the HTML, but not counting browser render time), it takes ~1.5 seconds. I was optimizing the template to see what was taking the longest, as there were a bunch of other more complicated things going on... and I realized if I removed the {{ ticket.id }} part, the render time went down to ~0.48 seconds. I even made a function on the ticket model:
def get_input_name(self): return str(self.id)
and replaced the line in the template:
<input class="ticket" size="3" maxlength="15" type="text" name="{{ ticket.get_input_name }}">
and this generated identical output, at ~0.52 seconds.
Why is calling {{ ticket.id }} so much slower?