out = 'Aktuelle:\n'
if ( getValue('current.symptoms.odxt') == '' and getValue('current.symptoms.osin') == '' )
then
out = out .. 'ingen\n'
end
if ( getValue('current.symptoms.odxt') ~= '' )
then
out = out .. 'På o.dxt har der været\n'
out = out .. getValue('current.symptoms.odxt') .. '\n'
end
if ( getValue('current.symptoms.osin') ~= '' )
then
out = out .. 'På o.sin har der været\n'
out = out .. getValue('current.symptoms.osin') .. '\n'
end
if ( getValue('current.symptoms.odxt') ~= '' or getValue('current.symptoms.osin') ~= '' )
then
out = out .. 'Symptomerne er opstået ' .. getValue('current.when')
.. ' og efterfølgende ' .. getValue('current.then')
end
return out