Release 0.9.0

This commit is contained in:
2025-11-21 07:26:02 +01:00
committed by ecv
commit 472f0812e7
240 changed files with 20033 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
{%- from 'jinja2_macros.html' import construct_toggle_link with context -%}
<div>
{{ construct_toggle_link(
options_view_toggle,
"options", ['widget_event', ['telnet', ['toggle_telnet_widget_view', {'steamid': steamid, "action": "show_options"}]]],
"back", ['widget_event', ['telnet', ['toggle_telnet_widget_view', {'steamid': steamid, "action": "show_frontend"}]]]
)}}
</div>

View File

@@ -0,0 +1,3 @@
<div id="telnet_table_widget_options_toggle" class="pull_out right">
{{ control_switch_options_view }}
</div>

View File

@@ -0,0 +1,10 @@
{%- from 'jinja2_macros.html' import construct_view_menu with context -%}
<div id="telnet_table_widget_options_toggle" class="pull_out right">
{{ construct_view_menu(
views=views,
current_view=current_view,
module_name='telnet',
steamid=steamid,
default_view='frontend'
)}}
</div>

View File

@@ -0,0 +1 @@
<tr{% if css_class != None %} class="{{ css_class }}"{% endif %}><td>{{ log_line }}</td></tr>

View File

@@ -0,0 +1,3 @@
<tr>
<th>Log</th>
</tr>

View File

@@ -0,0 +1,3 @@
<tr>
<th>Log</th>
</tr>

View File

@@ -0,0 +1,27 @@
<header>
<div>
<span>Telnet Log</span>
</div>
</header>
<aside>
{{ options_toggle }}
</aside>
<main>
<table>
<caption>
<span class="log_line">standard message</span>
<span class="game_chat">player chat</span>
<span class="player_logged">login / logout</span>
<span class="bot_command">bot command</span>
</caption>
<thead>
{{ table_header }}
</thead>
<tbody>
<tr>{{ log_lines }}</tr>
</tbody>
<tfoot>
{{ table_footer }}
</tfoot>
</table>
</main>

View File

@@ -0,0 +1,27 @@
<header>
<div>
<span>Telnet Log</span>
</div>
</header>
<aside>
{{ options_toggle }}
</aside>
<main>
<table>
<thead>
<tr>
<th colspan="2">Telnet Log Options</th>
</tr>
</thead>
<tbody>
<tr>
<th colspan="2"><span>widget-options</span></th>
</tr>
{% for key, value in widget_options.items() %}
<tr>
<td><span>{{key}}</span></td><td>{{value}}</td>
</tr>
{% endfor %}
</tbody>
</table>
</main>

View File

@@ -0,0 +1,22 @@
<header>
<div>
<span>Telnet Log</span>
</div>
</header>
<aside>
{{ options_toggle }}
</aside>
<main>
<table>
<thead>
<tr>
<th colspan="2">Test View</th>
</tr>
</thead>
<tbody>
<tr>
<td colspan="2"><span>Test</span></td>
</tr>
</tbody>
</table>
</main>