|
156 | 156 | <li><a style="font-size: 12px;" data-toggle="modal" data-target="#comingSoon">Sort</a></li> |
157 | 157 | <li><a style="font-size: 12px;" data-toggle="modal" data-target="#comingSoon">Filter</a></li> |
158 | 158 | <li class="divider"></li> |
159 | | - <li><a style="font-size: 12px;" data-toggle="modal" data-target="#comingSoon">Delete</a></li> |
| 159 | + <li><a style="font-size: 12px;" data-toggle="modal" data-target="#deleteProjectModal">Delete Project</a></li> |
160 | 160 | <li><a style="font-size: 12px;" data-toggle="modal" data-target="#deleteRequestModal">Delete Request</a></li> |
| 161 | + <li><a style="font-size: 12px;" data-toggle="modal" data-target="#editProjectModal">Edit Project</a></li> |
161 | 162 | </ul> |
162 | 163 | </div> |
163 | 164 |
|
|
436 | 437 | </div> |
437 | 438 | </div> |
438 | 439 | </div> |
| 440 | + <div class="modal fade" id="editProjectModal" tabindex="-1"> |
| 441 | + <div class="modal-dialog"> |
| 442 | + <div class="modal-content"> |
| 443 | + <div class="modal-header"> |
| 444 | + <button type="button" class="close" data-dismiss="modal">×</button> |
| 445 | + <h4 class="modal-title" id="editProjectModalLabel">Edit Project</h4> |
| 446 | + </div> |
| 447 | + <div class="modal-body"> |
| 448 | + <input type="text" id="editProjectTextField" class="form-control" placeholder="Enter Project Name"> <br> |
| 449 | + <textarea id="editProjectTextArea" class="form-control" rows="3" placeholder="Enter Description"></textarea> |
| 450 | + <br> |
| 451 | + </div> |
| 452 | + <div class="modal-footer"> |
| 453 | + <button type="button" class="btn btn-default" data-dismiss="modal">Close</button> |
| 454 | + <button id="editProjectBtn" type="button" class="btn btn-primary">Save changes</button> |
| 455 | + </div> |
| 456 | + </div> |
| 457 | + </div> |
| 458 | + </div> |
439 | 459 | <div class="modal fade" id="switchWorkspaceModal" tabindex="-1"> |
440 | 460 | <div class="modal-dialog"> |
441 | 461 | <div class="modal-content"> |
|
467 | 487 | </div> |
468 | 488 | </div> |
469 | 489 | </div> |
| 490 | + <div class="modal fade" id="deleteProjectModal" tabindex="-1"> |
| 491 | + <div class="modal-dialog"> |
| 492 | + <div class="modal-content"> |
| 493 | + <div class="modal-header"> |
| 494 | + <button type="button" class="close" data-dismiss="modal">×</button> |
| 495 | + <h4 class="modal-title" id="myModalLabel">Delete Project</h4> |
| 496 | + </div> |
| 497 | + <div class="modal-body"> |
| 498 | + Are You Sure You Want To Delete Selected Project? |
| 499 | + </div> |
| 500 | + <div class="modal-footer"> |
| 501 | + <button type="button" class="btn btn-default" data-dismiss="modal">No</button> |
| 502 | + <button type="button" class="btn btn-primary" id="deleteProjectBtn">Yes</button> |
| 503 | + </div> |
| 504 | + </div> |
| 505 | + </div> |
| 506 | + </div> |
470 | 507 | <div class="modal fade" id="comingSoon" tabindex="-1"> |
471 | 508 | <div class="modal-dialog"> |
472 | 509 | <div class="modal-content"> |
|
0 commit comments