fileexists.html 1.3 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <!--
  2. - SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors
  3. - SPDX-License-Identifier: AGPL-3.0-only
  4. -->
  5. <div id="{dialog_name}" title="{title}" class="fileexists">
  6. <span class="why">{why}<!-- Which files do you want to keep --></span><br/>
  7. <span class="what">{what}<!-- If you select both versions, the copied file will have a number added to its name. --></span><br/>
  8. <br/>
  9. <table>
  10. <th><input id="checkbox-allnewfiles" class="allnewfiles checkbox" type="checkbox" /><label for="checkbox-allnewfiles">{allnewfiles}<span class="count"></span></label></th>
  11. <th><input id="checkbox-allexistingfiles" class="allexistingfiles checkbox" type="checkbox" /><label for="checkbox-allexistingfiles">{allexistingfiles}<span class="count"></span></label></th>
  12. </table>
  13. <div class="conflicts">
  14. <div class="template">
  15. <div class="filename"></div>
  16. <div class="replacement">
  17. <input type="checkbox" class="checkbox u-left"/>
  18. <label>
  19. <span class="svg icon"></span>
  20. <div class="mtime"></div>
  21. <div class="size"></div>
  22. </label>
  23. </div>
  24. <div class="original">
  25. <input type="checkbox" class="checkbox u-left" />
  26. <label>
  27. <span class="svg icon"></span>
  28. <div class="mtime"></div>
  29. <div class="size"></div>
  30. <div class="message"></div>
  31. </label>
  32. </div>
  33. </div>
  34. </div>
  35. </div>