-
Notifications
You must be signed in to change notification settings - Fork 7
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
Showing
15 changed files
with
132 additions
and
14 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 |
---|---|---|
|
@@ -6,6 +6,7 @@ History | |
Unreleased | ||
---------- | ||
|
||
* Add support for Django 5.0 | ||
* Drop support for Django 3.2, 4.0 and 4.1 | ||
|
||
|
||
|
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
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,9 @@ | ||
<form method="post"> | ||
<div class="field" id="div_id_email"> | ||
<label class="label" for="id_email">email<span class="asterisk">*</span></label> | ||
<div class="control"> | ||
<input type="email" name="email" maxlength="30" class="input" id="id_email" required> | ||
</div> | ||
<p class="help" id="hint_id_email">Insert your email</p> | ||
</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
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,37 @@ | ||
<form method="post"> | ||
<div class="field" id="div_id_text_input"> | ||
<label class="label" for="id_text_input"> | ||
Text input<span class="asterisk"> | ||
* | ||
</span> | ||
</label> | ||
<div class="control"> | ||
<input class="input" id="id_text_input" name="text_input" required type="text"> | ||
</div> | ||
<p class="help" id="hint_id_text_input"> | ||
help on a text_input | ||
</p> | ||
</div> | ||
<div class="field is-grouped"> | ||
<div class="control"> | ||
<div class="select"> | ||
<select id="id_fruit" name="fruit"> | ||
<option value="apple"> | ||
Apple | ||
</option> | ||
<option value="pear"> | ||
Pear | ||
</option> | ||
</select> | ||
</div> | ||
</div> | ||
<div class="control"> | ||
<input class="button is-primary" id="submit-id-accept" name="accept" type="submit" value="Accept"> | ||
</div> | ||
<div class="control"> | ||
<button class="button is-danger"> | ||
Reject | ||
</button> | ||
</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
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,48 @@ | ||
<form method="post"> | ||
<div class="field is-horizontal" id="div_id_text_input"> | ||
<div class="field-label"> | ||
<label class="label" for="id_text_input"> | ||
Text input<span class="asterisk"> | ||
* | ||
</span> | ||
</label> | ||
</div> | ||
<div class="field-body"> | ||
<div class="field"> | ||
<div class="control"> | ||
<input class="input" id="id_text_input" name="text_input" required type="text"> | ||
</div> | ||
<p class="help" id="hint_id_text_input"> | ||
help on a text_input | ||
</p> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="field is-horizontal"> | ||
<div class="field-label"></div> | ||
<div class="field-body"> | ||
<div class="field is-grouped"> | ||
<div class="control"> | ||
<div class="select"> | ||
<select id="id_fruit" name="fruit"> | ||
<option value="apple"> | ||
Apple | ||
</option> | ||
<option value="pear"> | ||
Pear | ||
</option> | ||
</select> | ||
</div> | ||
</div> | ||
<div class="control"> | ||
<input class="button is-primary" id="submit-id-accept" name="accept" type="submit" value="Accept"> | ||
</div> | ||
<div class="control"> | ||
<button class="button is-danger"> | ||
Reject | ||
</button> | ||
</div> | ||
</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
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