-
-
Notifications
You must be signed in to change notification settings - Fork 91
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
implemented copy&move of a record to another store (closes #134)
- Loading branch information
1 parent
ee3aa2b
commit bf160e4
Showing
6 changed files
with
119 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
<div class="modal fade" id="copy_move_modal" role="dialog" aria-hidden="true" tabindex="-1"> | ||
<div class="modal-dialog" role="document"> | ||
<div class="modal-content"> | ||
|
||
|
||
<div class="modal-header tb-container-small"> | ||
<div class="toolbar-small"> | ||
<button type="button" class="btn btn-default tb-elem btn-close-small" data-dismiss="modal"> | ||
<i class="fa fa-times" aria-hidden="true"></i> | ||
</button> | ||
</div> | ||
</div> | ||
|
||
<div class="modal-body container" id="copy_move_body"> | ||
<div class="row"> | ||
|
||
<div class="col-5"> | ||
<select class="add-on btn btn-default" style="width:100%" id="copy_move_action" name="copy_move_action"> | ||
<option value="0" selected>Copy to</option> | ||
<option value="1">Move to</option> | ||
</select> | ||
</div> | ||
|
||
<div class="col-5"> | ||
<select class="add-on btn btn-default" style="width:100%" id="copy_move_store" name="copy_move_store"> | ||
</select> | ||
</div> | ||
|
||
<div class="col-2"> | ||
<button class="btn btn-default" style="width:100%" type="button" ng-click="onMove()"> | ||
<i class="fa fa-arrow-circle-right" aria-hidden="true"></i> | ||
</button> | ||
</div> | ||
|
||
</div> | ||
</div> | ||
|
||
</div> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters