<form>
    <table id="industryTab" class="admintable generaltable">
        <thead>
            <tr>
                <th>Industry</th>
                <th>Logo thumbnail</th>
                <th>Choose Industry</th>
            </tr>
        </thead>
        <tbody>
            {{#industry}}
            <tr>
                <td>{{name}}</td>
                <td><a href="{{url}}"><img src="{{logo}}" width="160" height="90"></a></td>
                <td><input type="radio" class="ind" name="industry" value="{{id}}" {{checked}}></td>
            </tr>
            {{/industry}}
        </tbody>
    </table>

    <div class="col-md-12 text-center">
        <div class="btn btn-primary" id="MapToCol">Submit</div>
    </div>
</form>