| 1 | <style> |
|---|
| 2 | .ActionLink { |
|---|
| 3 | cursor: pointer; |
|---|
| 4 | color: #2255d0; |
|---|
| 5 | text-decoration: none; |
|---|
| 6 | } |
|---|
| 7 | |
|---|
| 8 | .ActionLink:hover { |
|---|
| 9 | text-decoration: underline; |
|---|
| 10 | } |
|---|
| 11 | </style> |
|---|
| 12 | <ul style="padding-left:20px;"> |
|---|
| 13 | {foreach:resultQueries[0],data} |
|---|
| 14 | <li style="padding:4px;">{data[dscrpt]}</li> |
|---|
| 15 | <ul style="padding-left:20px;"> |
|---|
| 16 | {foreach:resultQueries[1],atta} |
|---|
| 17 | {if:eq(atta[doc_id],data[keyval])} |
|---|
| 18 | <li><a class="ActionLink" href="./dokumenty/fileid_{atta[fileid]}.{substr(atta[filenm],#-3#,#3#)}">{atta[filenm]}</a></li> |
|---|
| 19 | {end:} |
|---|
| 20 | {end:} |
|---|
| 21 | </ul> |
|---|
| 22 | {end:} |
|---|
| 23 | </ul> |
|---|