local p = {}

local kla = require("Modul:Klasse")
local fom = require("Modul:Formular")

function p.Formular(frame)
	-- Kommandozeile zum Debuggen:
	-- = p.Formular(mw.getCurrentFrame())
	local t = ""
	t = t .. "{{{for template|Audio|label=Audio}}}"
	t = t .. kla.attrFormTable(frame, "Audio")									-- gemäß AttributListe der Klasse
	t = t .. "{{{end template}}}"
	t = t .. fom.articleEditAndCommon()
	return t
end

return p