Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 16594 | Rev 16596 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 16594 Rev 16595
Línea 124... Línea 124...
124
                    var people = [
124
                    var people = [
125
                        {
125
                        {
126
                            name: item.demo
126
                            name: item.demo
127
                        }
127
                        }
128
                    ];
128
                    ];
-
 
129
                    console.log(people);
129
                    var html = myTemplate.render(item.demo);
130
                    var html = myTemplate.render(people);
130
                    $("#peopleList").html(html);
131
                    $("#peopleList").html(html);
131
                });
132
                });
Línea 285... Línea 286...
285
 
286
 
Línea 286... Línea 287...
286
<div id="peopleList"></div>
287
<div id="peopleList"></div>
287
 
288
 
288
<script id="personTmpl" type="text/x-jsrender">
289
<script id="personTmpl" type="text/x-jsrender">
289
    <table class="table table-bordered ">
290
    <table class="table table-bordered ">
290
                                        <thead>
291
        <thead>
291
                                            <tr>
292
            <tr>
292
                                                <th>Usuarios</th>
293
                <th>Usuarios</th>
293
                                                <th>{{:name}}</th>
294
                <th>{{:name}}</th>
294
                                            </tr>
295
            </tr>
295
                                        </thead>
296
        </thead>
296
                                        <tbody>
297
        <tbody>
297
                                            <tr>
298
            <tr>
298
                                                <td></td>
299
                <td></td>
299
                                            </tr>
300
            </tr>
Línea 300... Línea 301...
300
                                        </tbody>
301
        </tbody>
Línea 301... Línea 302...
301
                                    </table>
302
    </table>
302
    
303