I have this in my template:
This means if a user has more than 29 posts but less than 100, then content should be shown. But if I attempt to save the template I get a template error. TMS doesn't say what error, but says the server doesn't respond, which from experience means that something isn't right with my code. I also tried this:
but this produces a parse error which messes up my template. Can anyone please show me how it's done right?
Code:
<xen:if is="{$user.message_count} > 29 AND < 100">content</xen:if>
This means if a user has more than 29 posts but less than 100, then content should be shown. But if I attempt to save the template I get a template error. TMS doesn't say what error, but says the server doesn't respond, which from experience means that something isn't right with my code. I also tried this:
Code:
<xen:if is="{$user.message_count} > 29 < 100">content</xen:if>
but this produces a parse error which messes up my template. Can anyone please show me how it's done right?