Вы отдельно показываете последние 2 элемента?
Тогда примерно так:
$Informationsystem_Controller_Show = new Informationsystem_Controller_Show(
Core_Entity::factory('Informationsystem', 1)
);
$Informationsystem_Controller_Show
->informationsystemItems()
->queryBuilder()
->clearOrderBy()
->orderBy('informationsystem_items.datetime', 'DESC');
$Informationsystem_Controller_Show
->xsl(
'ИМЯ XSL ШАБЛОНА'
)
->limit(2)
->show();