Advertisement
Guest User

Untitled

a guest
Mar 27th, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. def project():
  2. if request.method=="POST":
  3. selected_tags=request.form.getlist('table_records')
  4.  
  5. <li>
  6. <form action="#" method="post">
  7. <button type="submit" name="Compare" value="Compare" class="btn-link">Compare</button>
  8. </li>
  9. <tbody>
  10. {% for each_run in all_runs %}
  11.  
  12.  
  13. ...
  14. ... Some Table Definition Here (i.e. table, thead etc) ...
  15. ...
  16.  
  17.  
  18. <tr>
  19. <td><input type="checkbox" class="flat" name=table_records value="{{each_run.tag}}"></td>
  20. <td class=" "><a href= "{{url_for('dummy_link',tag=each_run.tag)}}"> {{each_run.tag}}</a></td>
  21. </tr>
  22. {% endfor %}
  23.  
  24. </form>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement