This commit is contained in:
Ricsi
2016-11-15 07:54:05 +01:00
parent e7b6d8a096
commit 04961702b2
14 changed files with 211 additions and 26 deletions

View File

@@ -23,23 +23,20 @@
</select>
</td>
</tr>
<tr>
<td>Edző: </td>
<td>
<select name="tr_user_coach_uc_id" id="tr_user_coach_uc_id">
<option value="null"> - </option>
{foreach $coach_data_assoc_array as $coach_data_array}
<option value="{$coach_data_array.ua_id}">
{$coach_data_array.ua_last_name} {$coach_data_array.ua_first_name}
</option>
{/foreach}
</select>
</td>
</tr>
<tr>
<td>Minden héten ebben az időpontban</td>
<td><input type="checkbox" name="every_week"></td>
</tr>
<tr>
<td>Edző(k): </td>
<td>
{foreach $coach_array as $coach}
<input type="checkbox" name="coaches[]" value="{$coach->get_ua_id()}">{$coach->get_ua_name()} <br>
{/foreach}
</td>
</tr>
<tr>
<td colspan="2"><input type="submit" value="Létrehozás"></td>
</tr>