-
-
Notifications
You must be signed in to change notification settings - Fork 78
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add missed css_class to TabHolder template (#183)
* Add missed css_class to TabHolder template * Minor fix in test_tab_and_tab_holder test method * Updated CHANGELOG.md * Updated Tests --------- Co-authored-by: David Smith <[email protected]>
- Loading branch information
Showing
4 changed files
with
34 additions
and
22 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<form method="post"> | ||
<ul class="nav nav-tabs tab-holder-class"> | ||
<li class="nav-item"><a class="nav-link active" href="#custom-name" data-bs-toggle="tab">One</a></li> | ||
<li class="nav-item"><a class="nav-link" href="#two" data-bs-toggle="tab">Two</a></li> | ||
</ul> | ||
<div class="tab-content card-body"> | ||
<div id="custom-name" class="tab-pane first-tab-class active"> | ||
<div id="div_id_first_name" class="mb-3"> | ||
<label for="id_first_name" class="form-label requiredField">first name<span | ||
class="asteriskField">*</span></label> | ||
<input type="text" name="first_name" maxlength="5" class="textinput textInput inputtext form-control" required | ||
id="id_first_name"> | ||
</div> | ||
</div> | ||
<div id="two" class="tab-pane"> | ||
<div id="div_id_password1" class="mb-3"> | ||
<label for="id_password1" class="form-label requiredField">password<span class="asteriskField">*</span></label> | ||
<input type="password" name="password1" maxlength="30" class="passwordinput form-control" required | ||
id="id_password1"> | ||
</div> | ||
<div id="div_id_password2" class="mb-3"> | ||
<label for="id_password2" class="form-label requiredField">re-enter password<span | ||
class="asteriskField">*</span></label> | ||
<input type="password" name="password2" maxlength="30" class="passwordinput form-control" required | ||
id="id_password2"> | ||
</div> | ||
</div> | ||
</div> | ||
</form> |
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