Keine Bearbeitungszusammenfassung |
Keine Bearbeitungszusammenfassung |
||
Zeile 5: | Zeile 5: | ||
-- Titel | -- Titel | ||
output = output .. '<tr><td><strong>Titel</strong></td><td>[[Hat Titel::' .. | local title = args["Titel"] or "Unbekannt" | ||
output = output .. '<tr><td><strong>Titel</strong></td><td>[[Hat Titel::' .. title .. ']]</td></tr>' | |||
-- Autor(en) | -- Autor(en) | ||
Zeile 16: | Zeile 17: | ||
end | end | ||
-- Gesamtbände | -- Complete volumes (ehemals Gesamtbände) | ||
output = output .. | if args["Complete volumes"] then | ||
output = output .. '<tr><td><strong>Complete volumes</strong></td><td>[[Complete volumes::' .. args["Complete volumes"] .. ']]</td></tr>' | |||
end | |||
-- Serienbeschreibung | -- Serienbeschreibung | ||
if args["Hat SerienBeschreibung"] then | |||
output = output .. '<tr><td><strong>Beschreibung</strong></td><td>' .. args["Hat SerienBeschreibung"] .. '</td></tr>' | |||
end | |||
-- Datensatz-IDs | -- Datensatz-IDs |
Version vom 19. November 2024, 22:36 Uhr
Die Dokumentation für dieses Modul kann unter Modul:Publikation/Serie/Doku erstellt werden
local serie = {}
function serie.render(args)
local output = '<table class="publikation serie">'
-- Titel
local title = args["Titel"] or "Unbekannt"
output = output .. '<tr><td><strong>Titel</strong></td><td>[[Hat Titel::' .. title .. ']]</td></tr>'
-- Autor(en)
if args["Autor"] then
output = output .. '<tr><td><strong>Autor(en)</strong></td><td>'
for author in mw.text.gsplit(args["Autor"], ",") do
output = output .. '[[Hat Autor::' .. author .. ']], '
end
output = output:sub(1, -3) .. '</td></tr>' -- Entfernt das letzte Komma
end
-- Complete volumes (ehemals Gesamtbände)
if args["Complete volumes"] then
output = output .. '<tr><td><strong>Complete volumes</strong></td><td>[[Complete volumes::' .. args["Complete volumes"] .. ']]</td></tr>'
end
-- Serienbeschreibung
if args["Hat SerienBeschreibung"] then
output = output .. '<tr><td><strong>Beschreibung</strong></td><td>' .. args["Hat SerienBeschreibung"] .. '</td></tr>'
end
-- Datensatz-IDs
if args["Hat Datensatz ID"] then
output = output .. '<tr><td><strong>Datensatz ID(s)</strong></td><td>'
for id in mw.text.gsplit(args["Hat Datensatz ID"], ",") do
output = output .. '[[Hat Datensatz ID::' .. id .. ']], '
end
output = output:sub(1, -3) .. '</td></tr>'
end
output = output .. '</table>'
return output
end
return serie