Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version 0.5.0 #87

Merged
merged 40 commits into from
Mar 24, 2024
Merged
Changes from 1 commit
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
2a57bca
:memo: update readme, with explanation about django-semantic-forms
globophobe Feb 18, 2024
6f84f44
:memo: add change log
globophobe Feb 18, 2024
559fc32
:heavy_plus_sign: add django-semantic-forms to deps
globophobe Feb 18, 2024
993a8c4
:art: format semantic_utils
globophobe Feb 18, 2024
f471e40
:truck: make django-semantic-forms separate package
globophobe Feb 18, 2024
dd4a7cf
:art: update type hints, docstrings
globophobe Feb 18, 2024
10fec82
:recycle: update imports
globophobe Feb 18, 2024
356cf3b
:truck: update base.html, as django-semantic-forms separate package
globophobe Feb 18, 2024
be3a8b2
:fire: delete unnecessary code
globophobe Feb 18, 2024
6a5c3cb
:bookmark: release v0.5.0
globophobe Feb 18, 2024
b9c864b
Merge branch 'main' into feature/release-v0.5.0
globophobe Feb 18, 2024
08d5127
:package: update deps
globophobe Feb 18, 2024
60a2bb5
:art: type hints, and docstrings
globophobe Mar 17, 2024
eca7260
:truck: move filters into separate package
globophobe Mar 17, 2024
69b6aea
:memo: update docs for semantic filter
globophobe Mar 17, 2024
c7bba43
:bug: add scrolling to list_filter dropdown, so visible on screen
globophobe Mar 17, 2024
9b2df66
:package: add django-semantic-filter to dev deps
globophobe Mar 17, 2024
eb153f1
:package: update deps
globophobe Mar 17, 2024
32cdc55
:wrench: add semantic_header as default before_changelist
globophobe Mar 17, 2024
6589c69
:recycle: add hook for semantic_header
globophobe Mar 17, 2024
fe00b0d
:wrench: upgrade linter rule defs
globophobe Mar 17, 2024
dc58c9c
:fire: delete unnecessary space
globophobe Mar 17, 2024
be0a448
:truck: move form specific css to semantic forms
globophobe Mar 17, 2024
8e5660e
:fire: delete unused conf
globophobe Mar 17, 2024
aff6c34
:sparkles: add form demo
globophobe Mar 17, 2024
1aa0889
:recycle: import filters from semantic_forms
globophobe Mar 20, 2024
c80c667
:sparkles: add semantic_admin template namespace
globophobe Mar 20, 2024
cba21a5
:fire: delete unnecessary file
globophobe Mar 20, 2024
02d5987
:recycle: semantic_ui -> semantic_forms
globophobe Mar 20, 2024
f859908
:art: add type hints, docstrings to tasks
globophobe Mar 20, 2024
e12b2f1
:sparkles: add semantic_forms kitchen sink to demo
globophobe Mar 20, 2024
e22fdff
:fire: delete unnecessary file
globophobe Mar 20, 2024
1655f97
:recycle: use semantic_forms base.html for login
globophobe Mar 20, 2024
48032a0
:package: update deps
globophobe Mar 20, 2024
58eb280
:memo: update docs
globophobe Mar 20, 2024
47ab84c
:recycle: update contrib.import_export to use semantic_forms
globophobe Mar 23, 2024
6cf3482
:package: update deps
globophobe Mar 24, 2024
59f0f1d
:memo: update django-semantic-forms info
globophobe Mar 24, 2024
5c23d53
:rewind: noprint css
globophobe Mar 24, 2024
f45573a
:memo: edit docs
globophobe Mar 24, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
🔥 delete unnecessary space
  • Loading branch information
globophobe committed Mar 17, 2024
commit dc58c9cc52113df34b2a0630aa6924c4e1ee61fa
2 changes: 1 addition & 1 deletion semantic_admin/templates/admin/change_form.html
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@

{% block content %}
<div id="content-main" class="change-form">
<form class="ui form {% if errors %} error{% endif %}" {% if has_file_field %}enctype="multipart/form-data" {% endif %}action="{{ form_url }}" method="post" id="{{ opts.model_name }}_form" novalidate>{% csrf_token %}{% block form_top %}{% endblock %}
<form class="ui form{% if errors %} error{% endif %}" {% if has_file_field %}enctype="multipart/form-data" {% endif %}action="{{ form_url }}" method="post" id="{{ opts.model_name }}_form" novalidate>{% csrf_token %}{% block form_top %}{% endblock %}
<div class="width-100">
{% if is_popup %}<input type="hidden" name="{{ is_popup_var }}" value="1" />{% endif %}
{% if to_field %}<input type="hidden" name="{{ to_field_var }}" value="{{ to_field }}" />{% endif %}
Expand Down