filenames

use kebab-case for file names
remove camelCase and snake_case
This commit is contained in:
Milan
2019-10-17 20:22:10 +02:00
parent c93b394307
commit 9792336ac8
87 changed files with 74 additions and 78 deletions

View File

@@ -0,0 +1,30 @@
<html5>
<html>
<body>
<TMPL_VAR .loc.label_show_schedule>
<table id="schedule_table">
<thead>
<tr>
<th></th>
<th><TMPL_VAR .loc.label_from></th>
<th></th>
<th><TMPL_VAR .loc.label_till></th>
<th><TMPL_VAR .loc.label_studio></th>
</tr>
</thead>
<tbody>
<TMPL_LOOP dates>
<tr class="<TMPL_IF exclude>exclude</TMPL_IF>">
<td><TMPL_VAR start_weekday></td>
<td><TMPL_VAR start></td>
<td><TMPL_VAR end_weekday></td>
<td><TMPL_VAR end></td>
<td><TMPL_VAR studio_name></td>
</tr>
</TMPL_LOOP>
</tbody>
</table>
</body>
</html>