Modul:Infobox: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
MF (Diskussion | Beiträge) (MF änderte das Inhaltsmodell der Seite Modul:Infobox von „Klartext“ nach „Scribunto“: Test) Markierung: Änderung des Inhaltsmodells |
Admin (Diskussion | Beiträge) Keine Bearbeitungszusammenfassung |
||
| Zeile 7: | Zeile 7: | ||
:addRow( 'Hersteller', 'HTK GmbH & Co. KG') | :addRow( 'Hersteller', 'HTK GmbH & Co. KG') | ||
:addRow( 'Erstrelease', '26.08.2016') | :addRow( 'Erstrelease', '26.08.2016') | ||
:addRow( 'Version', ' | :addRow( 'Akt. Version', 'R202203 - 15.03.2022') | ||
:addRow( 'Webseite', '[http://www.omnimde.de http://www.omnimde.de]]') | :addRow( 'Webseite', '[http://www.omnimde.de http://www.omnimde.de]]') | ||
:addRow( 'Demo', '[https://play.google.com/store/apps/details?id=de.htk.omnimde&hl=de&gl=US Google PlayStore]') | :addRow( 'Demo', '[https://play.google.com/store/apps/details?id=de.htk.omnimde&hl=de&gl=US Google PlayStore]') | ||
Version vom 15. März 2022, 14:26 Uhr
Die Dokumentation für dieses Modul kann unter Modul:Infobox/Doku erstellt werden
local p = {}
function p.ShowInfoBoxOmniMDE(frame)
local capiunto = require 'capiunto'
return capiunto.create({title = 'OmniMDE'})
:addImage( string.format('[[File:%s|200px]]', 'OmniMDE_Logo_v9.png'), 'OmniMDE Logo')
:addRow( 'Hersteller', 'HTK GmbH & Co. KG')
:addRow( 'Erstrelease', '26.08.2016')
:addRow( 'Akt. Version', 'R202203 - 15.03.2022')
:addRow( 'Webseite', '[http://www.omnimde.de http://www.omnimde.de]]')
:addRow( 'Demo', '[https://play.google.com/store/apps/details?id=de.htk.omnimde&hl=de&gl=US Google PlayStore]')
end
function p.ShowInfoBoxOmniSeller(frame)
local capiunto = require 'capiunto'
return capiunto.create({title = 'OmniSeller'})
:addImage( string.format('[[File:%s|200px]]', 'Logo_OmniSeller_2017.png'), 'OmniSeller Logo 2017' )
:addRow( 'App-Name', '[[OmniSeller:Hauptseite|OmniSeller]]')
:addRow( 'Hersteller', 'HTK GmbH & Co. KG')
:addRow( 'Webseite', '[http://www.omniseller.de http://www.omniseller.de]')
:addRow( '', '')
:addRow( '', '[[OmniSeller:Systemvoraussetzungen|Systemvoraussetzungen]]')
end
return p