-
Notifications
You must be signed in to change notification settings - Fork 125
fix(chore): global settings redesign #1030
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
Changes from all commits
c2ca5bc
edbfcd7
793f6ed
15c795a
1af6504
c3edb71
58ea52e
33a295b
4392ce4
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -1,6 +1,7 @@ | ||||||
| {% extends "pretixcontrol/global_settings_base.html" %} | ||||||
| {% load i18n %} | ||||||
| {% load bootstrap3 %} | ||||||
| {% load getitem %} | ||||||
|
||||||
| {% load getitem %} | |
| {% load getitem from getitem %} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Both
importlib_metadata(line 15) andimportlib.metadata(imported via line 20:from importlib.metadata import entry_points) are being used. Since Python 3.8+,importlib.metadatais available in the standard library. Theimportlib_metadatabackport is only needed for older Python versions. Consider using onlyimportlib.metadatafor consistency, or add a comment explaining why both are required if there's a specific compatibility reason.