Using AND/OR in if else for Quota IDs
Design and Skin Customization
It would be more like this...
{if $item.profile_quota_id == '5' || $item.profile_quota_id == '6'}
and its better to use the OR method here because most likely, the $item.profile_quota_id variable will never be multiple quota ID's.
Hope this helps!