diff options
Diffstat (limited to 'web/app/templates')
-rw-r--r-- | web/app/templates/home.html | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/web/app/templates/home.html b/web/app/templates/home.html index 809269d..d35767a 100644 --- a/web/app/templates/home.html +++ b/web/app/templates/home.html @@ -30,7 +30,8 @@ {% endfor %} </select> - <input type="text" name="section" placeholder="Section"> + <label for="act">Comma Separated Section List</label> + <input type="text" name="section" placeholder="Sections"> <select name="state_code"> {% for code, name in states %} @@ -56,7 +57,6 @@ <th scope="col">Job Name</th> <th scope="col">Job Status</th> <th scope="col">Output</th> - <th scope="col">Log</th> </tr> </thead> <tbody> @@ -65,7 +65,6 @@ <td>{{ job.args[0] }}</td> <td>{{ job._status }}</td> <td><a href="{{ url_for('main.download_output', filename=job.args[0]) }}">Download</a></td> - <td>Running</td> </tr> {% endfor %} </tbody> |