Advertisement
Guest User

Untitled

a guest
Mar 18th, 2019
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.59 KB | None | 0 0
  1. {% extends 'layout.html' %}
  2. {%block body %}
  3. <br></br>
  4.  
  5. <div class="jumbotron text-center">
  6. <h1>Welcome to the KanbanApp</h1>
  7. <p class='lead'>Organize your tasks now!</p>
  8. </div>
  9.  
  10.  
  11.  
  12. <p align="center">Do you have any task pending? </p>
  13. <div>
  14. <form action='/add' method ='POST'>
  15. <input type='text' name = 'todoitem'>
  16. <input type='submit' value='add item'>
  17. </form>
  18. </div>
  19.  
  20. <div>
  21. <h1>Incomplete Items</h1>
  22. <div class="column" style="background-color:#f47641;">
  23.  
  24.  
  25. <ul>
  26. {% for todo in incomplete %}
  27. <li style='font-size: 30 pt'>{{todo.text}}<a href="{{url_for('asinprogress', id=todo.id)}}"><button type="button" class="btn"><i class="fa fa-spinner fa-spin"></i></button></a></li>
  28. {% endfor %}
  29. </ul>
  30. </div>
  31.  
  32.  
  33.  
  34.  
  35. <h1>In Progress</h1>
  36. <div class="column" style="background-color:#f4d941;">
  37.  
  38. <ul>
  39. {% for todo in inprogress %}
  40. <li style='font-size: 30 pt'>{{todo.text}}<a href="{{url_for('ascomplete', id=todo.id)}}"><button type="button" class="btn"><i class="fa fa-close"></i></button></a></li>
  41. {% endfor %}
  42. </ul>
  43. </div>
  44. </div>
  45.  
  46.  
  47. <h1>Complete</h1>
  48. <div class="column" style="background-color: #a1f442;">
  49.  
  50.  
  51.  
  52.  
  53. {% for todo in complete %}
  54. <li style='font-size: 30 pt'>{{todo.text}}<a href="{{url_for('delete', id=todo.id)}}"><button type="button" action='/delete/<id>' id=todo.id class="btn"><i class="fa fa-close"></i></button></a></li>
  55. <input type="submit" name="{{todo.id}}" value='DELETE'>
  56. {% endfor %}
  57.  
  58. </div>
  59.  
  60.  
  61.  
  62.  
  63.  
  64. {%endblock%}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement