David 10 anos atrás
pai
commit
8db2f4e3a2
3 arquivos alterados com 14 adições e 14 exclusões
  1. 5 5
      front/views/jobs.html
  2. 4 4
      front/views/processed.html
  3. 5 5
      front/views/uploadList.html

+ 5 - 5
front/views/jobs.html

@@ -9,19 +9,19 @@
 	</tr>
 	<tr ng-repeat="j in working">
 		<td>
-			{{j.eq}}
+			{{::j.eq}}
 		</td>
 		<td>
-			{{j.type}}
+			{{::j.type}}
 		</td>
 		<td>
-			{{j.target}}
+			{{::j.target}}
 		</td>
 		<td>
-			{{j.progress}}
+			{{::j.progress}}
 		</td>
 		<td>
-			{{j.result}}
+			{{::j.result}}
 		</td>
 	</tr>
 </table>

+ 4 - 4
front/views/processed.html

@@ -9,16 +9,16 @@
 	</tr>
 	<tr ng-repeat="v in videolist">
 		<td>
-			{{v.start_time}}
+			{{::v.start_time}}
 		</td>
 		<td>
-			{{v.end_time}}
+			{{::v.end_time}}
 		</td>
 		<td>
-			{{v.in_fname.split("/").slice(-1)[0]}}
+			{{::v.in_fname.split("/").slice(-1)[0]}}
 		</td>
 		<td>
-			{{v.out_fname.split("/").slice(-1)[0]}}
+			{{::v.out_fname.split("/").slice(-1)[0]}}
 		</td>
 		<td>
 			<a ng-href="/upload/{{v._id}}">subir</a>

+ 5 - 5
front/views/uploadList.html

@@ -9,19 +9,19 @@
 	</tr>
 	<tr ng-repeat="v in videolist">
 		<td>
-			{{v.enqueued_at}}
+			{{::v.enqueued_at}}
 		</td>
 		<td>
-			{{v.finished_at}}
+			{{::v.finished_at}}
 		</td>
 		<td>
-			{{v.title}}
+			{{::v.title}}
 		</td>
 		<td>
-			{{v.video.split("/").slice(-1)[0]}}
+			{{::v.video.split("/").slice(-1)[0]}}
 		</td>
 		<td>
-			<a ng-href="http://youtube.com/watch?v={{v.yt}}" target="_blank">{{v.yt}}</a>
+			<a ng-href="http://youtube.com/watch?v={{v.yt}}" target="_blank">{{::v.yt}}</a>
 		</td>
 	</tr>
 </table>