making textboxes bigger

This commit is contained in:
manetta 2020-02-28 16:20:56 +01:00
parent 6fd03afc00
commit c2f25a192a

View File

@ -31,8 +31,8 @@
<td>{{ xdex[x]['fixed1'] }}</td>
<td>{{ xdex[x]['fixed2'] }}</td>
<td>{{ xdex[x]['loose'] }}</td>
<td><textarea name="score-{{ x }}" cols="50">{{ xdex[x]['score'] }}</textarea></td>
<td><textarea name="comment-{{ x }}" cols="30">{{ xdex[x]['comment'] }}</textarea></td>
<td><textarea name="score-{{ x }}" cols="50" rows="5">{{ xdex[x]['score'] }}</textarea></td>
<td><textarea name="comment-{{ x }}" cols="30" rows="5">{{ xdex[x]['comment'] }}</textarea></td>
<td>
<select name="status-{{ x }}">
<option {% if xdex[x]['status'] == '-'%}selected{% else %}{% endif %}>-</option>
@ -42,7 +42,7 @@
</select>
</td>
<td>
update x: <br>
update x: <br><br>
<input type="submit" name="update" value="{{ x }}"></td>
</tr>
{% endfor %}