Guest User

Untitled

a guest
May 22nd, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. <table name="exercises" id="workout-table">
  2. <tr>
  3. <th>Name</th>
  4. <th>Reps/Intervals</th>
  5. <th>Sets</th>
  6. <th>Weight/Distance/Time</th>
  7. </tr>
  8. [%- i=0 %]
  9. [% WHILE i<=10 %]
  10. <tr class="workout-rows">
  11. <td><input type="text" name="workout[exercise][[% i %]][name]" /></td>
  12. <td><input type="text" name="workout[exercise][[% i %]][repetitions]" size="3"/></td>
  13. <td><input type="text" name="workout[exercise][[% i %]][sets]" size="3"/></td>
  14. <td><input type="text" name="workout[exercise][[% i %]][weight]" size="4"/></td>
  15. </tr>
  16. [% i = i + 1 %]
  17. [% END %]
  18.  
  19. </table>
Add Comment
Please, Sign In to add comment