Browse Source

making textboxes bigger

master
manetta 4 years ago
parent
commit
c2f25a192a
  1. 6
      templates/x-dex.html

6
templates/x-dex.html

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

Loading…
Cancel
Save