| 123456789101112131415161718192021222324252627282930313233343536 |
- <div>
- "Copiar" copia el "id" del video.. es lo que se pega en la plataforma en donde dice 'video'
- <br/>
- "Plataforma" Crea un video con ese nombre, sin profesor y sin diapositivas en la plataforma (con el id del video cargado)
- <br/>
- "reintentar" vuevle a subir el mismo video, por si hubo un error y se reproceso (solo con tratamientos, no usar)
- <table id="uploadedTable" class="table table-striped">
- <tr>
- <th>Inicio</th>
- <th>Fin</th>
- <th>Titulo</th>
- <th>Archivo</th>
- <th>Link</th>
- </tr>
- <tr ng-repeat="v in videolist">
- <td>
- {{::v.enqueued_at}}
- </td>
- <td>
- {{::v.finished_at}}
- </td>
- <td>
- {{::v.title}}
- </td>
- <td>
- {{::v.video.split("/").slice(-1)[0]}}
- </td>
- <td>
- <a ng-href="http://youtube.com/watch?v={{v.yt}}" target="_blank">Ver</a>
- <button class="btn" ngclipboard data-clipboard-text="{{v.yt}}">Copiar</button>
- <button class="btn" ng-click="post(v._id)">Plataforma</button>
- <button class="btn" ng-click="retry(v._id)">reintentar</button>
- </td>
- </tr>
- </table>
- </div>
|