Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <div id="{{uploaderName}}">
- <div class='navbar'>
- <div class='navbar-inner'>
- <form class='navbar-form form-inline'>
- <button id="{{browseButtonId}}" class='btn btn-small'>Sfoglia</button>
- <button type='btn' class='btn btn-small' ng-disabled='attachments.length == 0'>Invia</button>
- </form>
- </div>
- </div>
- <table class='table table-hover table-striped' ng-show='attachments.length > 0'>
- <thead>
- <tr>
- <th>Nome file</th>
- <th>Dimensione</th>
- <th></th>
- </thead>
- <tbody>
- <tr ng-repeat='a in attachments'>
- <td>{{a.name}}</td>
- <td>{{a.size}}</td>
- <td><button class='btn'>Rimuovi</button></td>
- </tr>
- </tbody>
- </table>
- </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement