Advertisement
Guest User

Untitled

a guest
Jul 16th, 2018
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. <div th:if="${video.correct == true}">
  2. <a
  3. th:unless="${video.status != null AND video.status.equals('NOT_ACCEPTED')}"
  4. th:href="@{|/video/${video.dailymotionVideoId}|}"
  5. role="button" class="btn btn-default btn-sm"
  6. data-toggle="tooltip" data-placement="bottom"
  7. title="Edit video"> <span
  8. class="glyphicon glyphicon-pencil" aria-hidden="true"></span>
  9. </a> <a
  10. th:if="${video.status != null AND video.status.equals('NOT_ACCEPTED')}"
  11. th:href="@{|#|}" role="button"
  12. class="btn btn-default btn-sm" data-toggle="tooltip"
  13. data-placement="bottom" title="Edit video" disabled="true">
  14. <span class="glyphicon glyphicon-pencil" aria-hidden="true"></span>
  15. </a>
  16. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement