Edit in JSFiddle

Ext.create('Ext.Panel', {
    title: 'Informationen',
	width: 350,
    height: 550,
    renderTo: 'image_holder',
    layout: {
        type:'accordion',
        multi: true
    },
    items: [{
        title: 'Einschränkungen',
        html: '<p>Fahrzeug</p><p>Artikel</p><p class="sub">Spannung</p><p class="sub">Einbauort</p><p class="sub">Starterleistung</p>'
    },{
        title: 'Benötigte Werkzeuge für Baugruppe',
        collapsed: true,
        html: '<p>Fixierwerkzeug - Kurbelwelle</p><p>Adapter</p><p>Blockierstift(e) - Nockenwelle(n)</p>'
    },{
        title: 'Arbeitswerte',
        html: '<p>0,30 h Sensor - Außentemperatur erneuern Standard</p>'
    },{
        title: 'Teilehersteller',
        html: '<p><strong>Bosch Automobilteile (424)</strong></p><p>Febi (96)</p><p>Beru (54)</p><p>Metzger (6)</p>'
    }]
});
<div id="image_holder"></div>
p {
    margin:0;
    padding-left:20px;
}
.sub {
    margin-left:30px;
}

External resources loaded into this fiddle: