Änderungen

keine Bearbeitungszusammenfassung
Zeile 29: Zeile 29:  
tab_gebaeude='<tab name=Gebäude>' ..  
 
tab_gebaeude='<tab name=Gebäude>' ..  
 
tpl_gebaeude .. '</tab>'
 
tpl_gebaeude .. '</tab>'
 +
 +
tpl_attribute = p.Attribute( frame, args )
 +
tab_attribut='<tab name=Attribute>' ..
 +
tpl_attribut .. '</tab>'
 
 
 
t ='<div class=factbox><tabs>' ..  
 
t ='<div class=factbox><tabs>' ..  
Zeile 35: Zeile 39:  
  tab_daten ..  
 
  tab_daten ..  
 
  tab_gebaeude ..
 
  tab_gebaeude ..
 +
  tab_attribute ..
 
  '</tabs></div>'
 
  '</tabs></div>'
    
-- Use preprocess to render the factbox and all contens at once
 
-- Use preprocess to render the factbox and all contens at once
 
return frame:preprocess(t)
 
return frame:preprocess(t)
 +
end
 +
 +
function p.Attribute( frame, args )
 +
t='<p>Herbert macht Blau</p>'
 +
return t
 
end
 
end