Skip to content
Snippets Groups Projects
Commit fbfe8393 authored by Tobias Ullerich's avatar Tobias Ullerich
Browse files

Fix input field labels for task and subtask

parent f24317eb
No related branches found
No related tags found
No related merge requests found
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
<div class="col s12 m8 offset-m2 l6 offset-l3"> <div class="col s12 m8 offset-m2 l6 offset-l3">
<div class="input-field col s12"> <div class="input-field col s12">
<input id="title" name="Description" type="text" value="{% if subtask %}{{ subtask["Description"] }}{% endif %}"> <input id="title" name="Description" type="text" value="{% if subtask %}{{ subtask["Description"] }}{% endif %}">
<label for="title">Title</label> <label for="title">Description</label>
</div> </div>
</div> </div>
</div> </div>
......
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
<div class="col s12 m8 offset-m2 l6 offset-l3"> <div class="col s12 m8 offset-m2 l6 offset-l3">
<div class="input-field col s12"> <div class="input-field col s12">
<input id="title" name="Description" type="text" value="{% if task %}{{ task["Description"] }}{% endif %}"> <input id="title" name="Description" type="text" value="{% if task %}{{ task["Description"] }}{% endif %}">
<label for="title">Title</label> <label for="title">Description</label>
</div> </div>
</div> </div>
</div> </div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment