<div dir="ltr"><div class="gmail_extra"><br><div class="gmail_quote">2015-08-31 12:15 GMT-05:00 Andrew Beverley <span dir="ltr"><<a href="mailto:andy@andybev.com" target="_blank">andy@andybev.com</a>></span>:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div><span class="">On Mon, 2015-08-31 at 12:10 -0500, Richard Reina wrote:<br>
> Does template toolkit provide of any sort of way to iterate a query results<br>
> like below but to also allow a space to the right (like an addon) for user<br>
> to type in text?<br>
<br>
</span>It's not so much a template toolkit question - (TT will produce whatever output<br>
you want). It's a HTML question - use an input box:<br>
<div><div class="h5"><br>
>  So that I would have:<br>
><br>
> [checkbox] [table columns] [small text area]<br>
> I have been struggling with how to go about this for about a day and I<br>
> believe it is beyond my pay-grade.<br>
><br>
> I feel like I am close but have been stuck for so long that I am beginning<br>
> to question if I am going about this entirely the wrong way and that<br>
> perhaps there is an easier TT method.<br>
><br>
> <div class="container" style="margin-top:20px;"><br>
>   <div class="row"><br>
>     <div class="col-xs-12"><br>
>           <form role="form" action="openchallenges" method="POST"><br>
>             <h3 class="text-center">Open To Do</h3><br>
>             <div class="well" style="max-height: 300px;overflow: auto;"><br>
>                 <ul class="list-group">    <!-- <ul class="list-group<br>
> checked-list-box"> --><br>
>              <table style="width:100%"><br>
>                 <% FOREACH ID IN Chlngs.keys.sort %><br>
>                 <tr class="list-group-item"><br>
>                  <td width="5"> <input type="checkbox" name="<% Chlngs.$<br>
> <a href="http://ID.ID" rel="noreferrer" target="_blank">ID.ID</a> %>"</input> </td><br>
>                   <td width="70"><% Chlngs.$ID.SNAME %></td><br>
>                   <td width="75"><% Chlngs.$ID.ANAME %></td><br>
>                   <td width="35"><% Chlngs.$ID.SSN %></td><br>
>                   <td width="35"><% Chlngs.$ID.YR %></td><br>
>                   <td width="250"><% Chlngs.$ID.CHNAME %></td><br>
>                   <td width="550"><% Chlngs.$ID.DESCRIP %></td><br>
<br>
</div></div>In here, insert something like:<br>
<br>
    <td><input type="text" name="..."></td><br>
<br>
Andy<br>
<br>
</div><br></blockquote><div><br></div><div>Andrew,<br><br></div><div>Thank you so much. Really appreciate it. And sorry for being off topic. Had a feeling it was more HTML related but wasn't sure if I had the wrong approach all together.<br><br></div><div>Again, thank you for the help.<br><br></div><div>Richard <br></div><br></div><br></div></div>