forked from mirrors/bookwyrm
Avoid whitespace when adding instance
This commit is contained in:
parent
6c17aa7630
commit
00d0d9d5de
1 changed files with 7 additions and 3 deletions
|
@ -73,9 +73,13 @@
|
||||||
<label class="label" for="id_notes">
|
<label class="label" for="id_notes">
|
||||||
{% trans "Notes:" %}
|
{% trans "Notes:" %}
|
||||||
</label>
|
</label>
|
||||||
<textarea name="notes" cols="40" rows="5" class="textarea" id="id_notes">
|
<textarea
|
||||||
{{ form.notes.value|default:'' }}
|
name="notes"
|
||||||
</textarea>
|
cols="40"
|
||||||
|
rows="5"
|
||||||
|
class="textarea"
|
||||||
|
id="id_notes"
|
||||||
|
>{{ form.notes.value|default:'' }}</textarea>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<button type="submit" class="button is-primary">
|
<button type="submit" class="button is-primary">
|
||||||
|
|
Loading…
Reference in a new issue