-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
aa2e339
commit ad61911
Showing
4 changed files
with
118 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
<div class = "container" id="add-followup-view"> | ||
<div class="row"> | ||
<div id="user-id" hidden> | ||
</div> | ||
<div class="form-group row"> | ||
<label for="add-followup-date" class="col-xs-2 col-form-label">Date & Time</label> | ||
<div class="col-xs-5"> | ||
<input class="form-control" type="datetime-local" value="" id="add-followup-date"> | ||
</div> | ||
</div> | ||
<div class="form-group row"> | ||
<label for="add-followup-client" class="col-xs-2 col-form-label">Client</label> | ||
<div class="col-xs-5"> | ||
<!-- <input type="number" placeholder="1" id="client-id" min="1"> --> | ||
<select id="add-followup-client"> | ||
<option value="">Client Name</option> | ||
</select> | ||
</div> | ||
<label for="add-followup-location" class="col-xs-2 col-form-label">Location</label> | ||
<div class="col-xs-3"> | ||
<input type="text" id="add-followup-location" class="form-control"></textarea> | ||
</div> | ||
</div> | ||
<div class="form-group row"> | ||
<label for="add-followup-note" class="col-xs-2 col-form-label">Note</label> | ||
<div class="col-xs-12"> | ||
<textarea id="add-followup-note" class="form-control" rows="10"></textarea> | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<div class="modal fade" id="add-followup-modal" tabindex="-1" role="dialog"> | ||
<div class="modal-dialog modal-lg" role="document"> | ||
<div class="modal-content"> | ||
<div class="modal-header"> | ||
Add Follow Up | ||
</div> | ||
<div class="modal-body"> | ||
{% include "components/_addfollowup.html" %} | ||
|
||
<div id="content"> | ||
|
||
</div> | ||
|
||
<button type="button" id="add-followup-submit" class="btn btn-outline-primary">Submit</button> | ||
</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