Advertisement
Guest User

plupload directive template

a guest
Jun 20th, 2013
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.88 KB | None | 0 0
  1. <div id="{{uploaderName}}">                                                                                                                                        
  2.   <div class='navbar'>
  3.     <div class='navbar-inner'>
  4.       <form class='navbar-form form-inline'>
  5.         <button id="{{browseButtonId}}" class='btn btn-small'>Sfoglia</button>
  6.         <button type='btn' class='btn btn-small' ng-disabled='attachments.length == 0'>Invia</button>
  7.       </form>
  8.     </div>
  9.   </div>
  10.   <table class='table table-hover table-striped' ng-show='attachments.length > 0'>
  11.     <thead>
  12.       <tr>
  13.         <th>Nome file</th>
  14.         <th>Dimensione</th>
  15.         <th></th>
  16.     </thead>
  17.     <tbody>
  18.       <tr ng-repeat='a in attachments'>
  19.         <td>{{a.name}}</td>
  20.         <td>{{a.size}}</td>
  21.         <td><button class='btn'>Rimuovi</button></td>
  22.       </tr>
  23.     </tbody>
  24.   </table>
  25. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement