David 10 лет назад
Родитель
Сommit
4c5275ba03
2 измененных файлов с 16 добавлено и 4 удалено
  1. 8 1
      front/css/style.css
  2. 8 3
      front/views/uploadList.html

+ 8 - 1
front/css/style.css

@@ -4,7 +4,14 @@ body,html{
 	margin: 0px 0px;
 	font-family: Century Gothic, sans-serif;
 }
-
+#uploadedTable .btn { padding: 2px 6px; }
+#uploadedTable td {
+	max-width:270px;
+}
+#uploadedTable td:nth-child(4) {
+	font-size: 13px;
+	
+}
 .modal-content { position:fixed !important; left: 5%; right: 5%; width: 90%; top: 5%; height: 90%; }
 .modal-content > .ng-scope { background-color:white; }
 .column { width:50%; float:left;}

+ 8 - 3
front/views/uploadList.html

@@ -1,5 +1,10 @@
 <div>
-<table class="table table-striped">
+"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>
@@ -22,9 +27,9 @@
 		</td>
 		<td>
 			<a ng-href="http://youtube.com/watch?v={{v.yt}}" target="_blank">Ver</a>
-			<button class="btn" ng-click="post(v._id)">Cargar</button>
 			<button class="btn" ngclipboard data-clipboard-text="{{v.yt}}">Copiar</button>
-			<button class="btn" ng-click="retry(v._id)">retry</button>
+			<button class="btn" ng-click="post(v._id)">Plataforma</button>
+			<button class="btn" ng-click="retry(v._id)">reintentar</button>
 		</td>
 	</tr>
 </table>