| 1 | <div> |
| 2 | <h3 data-i18n="Debug Menu">Debug Menu</h3> |
| 3 | <div data-i18n="Functions in this category are for advanced users only. Don't click anything if you're not sure about the consequences."> |
| 4 | Functions in this category are for advanced users only. Don't click anything if you're not sure about the consequences. |
| 5 | </div> |
| 6 | <table id="debug_table" class="responsiveTable"> |
| 7 | {{#each functions}} |
| 8 | {{#with this}} |
| 9 | <tr> |
| 10 | <td> |
| 11 | <div class="justifyLeft"> |
| 12 | <b>{{this.name}}</b> |
| 13 | </div> |
| 14 | <div class="justifyLeft"> |
| 15 | {{this.description}} |
| 16 | </div> |
| 17 | <div class="flex-container justifyCenter"> |
| 18 | <div class="menu_button menu_button_icon" data-debug-function="{{this.functionId}}" data-i18n="Execute"> |
| 19 | Execute |
| 20 | </div> |
| 21 | </div> |
| 22 | </td> |
| 23 | </tr> |
| 24 | {{/with}} |
| 25 | {{/each}} |
| 26 | </table> |
| 27 | </div> |