declare
cursor c_tasks is
select task_name, assigned_to
from eba_ut_chart_tasks
where rownum < 5;
begin
sys.htp.p('');
for a in c_tasks
loop
sys.htp.p('- ' || apex_escape.html(a.task_name) || ' (' || apex_escape.html(a.assigned_to) || ')
' );
end loop;
sys.htp.p('
');
end;