123456789101112131415161718 |
- <div class="contentViewSwitcher">
- <table role="presentation">
- <tbody>
- {{~it.rows :row:index}}
- <tr role="button" tabindex="0" class="rootSelector{{=index}}">
- <td class="icon">
- <svg class="svgIcon">
- <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="{{=row.svgIcon}}"></use>
- </svg>
- </td>
- <td class="name">
- <div title="{{=_.escape(row.defaultName)}}" class="active">{{=_.escape(row.defaultName)}}</div>
- </td>
- </tr>
- {{~}}
- </tbody>
- </table>
- </div>
|