Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
AlekSIS-Core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Service Desk
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
AlekSIS®
Official
AlekSIS-Core
Commits
62884242
Verified
Commit
62884242
authored
3 years ago
by
Lloyd Meins
Committed by
Jonathan Weth
3 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Add preferences to disable dashboard auto updating (per site/person)
parent
f4265e50
Branches
prepare-release-2.7.1
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!653
Resolve "Web Content Accessibility Guidelines"
Pipeline
#17950
passed
3 years ago
Stage: test
Stage: build
Stage: publish
Stage: docker
Stage: deploy
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
CHANGELOG.rst
+5
-0
5 additions, 0 deletions
CHANGELOG.rst
aleksis/core/preferences.py
+20
-0
20 additions, 0 deletions
aleksis/core/preferences.py
aleksis/core/templates/core/index.html
+3
-1
3 additions, 1 deletion
aleksis/core/templates/core/index.html
with
28 additions
and
1 deletion
CHANGELOG.rst
+
5
−
0
View file @
62884242
...
...
@@ -9,6 +9,11 @@ and this project adheres to `Semantic Versioning`_.
`2.0b2` - 2021-06-15
--------------------
Added
~~~~~~~
* Add option to disable dashboard auto updating as a user and sitewide.
Changed
~~~~~~~
...
...
This diff is collapsed.
Click to expand it.
aleksis/core/preferences.py
+
20
−
0
View file @
62884242
...
...
@@ -386,3 +386,23 @@ class PDFFileExpirationDuration(IntegerPreference):
default
=
3
verbose_name
=
_
(
"
PDF file expiration duration
"
)
help_text
=
_
(
"
in minutes
"
)
@person_preferences_registry.register
class
AutoUpdatingDashboard
(
BooleanPreference
):
"""
User preference for automatically updating the dashboard.
"""
section
=
general
name
=
"
automatically_update_dashboard
"
default
=
True
verbose_name
=
_
(
"
Automatically update the dashboard and its widgets
"
)
@site_preferences_registry.register
class
AutoUpdatingDashboardSite
(
BooleanPreference
):
"""
Automatic updating of dashboard.
"""
section
=
general
name
=
"
automatically_update_dashboard_site
"
default
=
True
verbose_name
=
_
(
"
Automatically update the dashboard and its widgets sitewide
"
)
This diff is collapsed.
Click to expand it.
aleksis/core/templates/core/index.html
+
3
−
1
View file @
62884242
...
...
@@ -108,5 +108,7 @@
</div>
{% endif %}
<script
type=
"text/javascript"
src=
"{% static "
js
/
include_ajax_live.js
"
%}"
></script>
{% if user.person.preferences.general__automatically_update_dashboard and request.site.preferences.general__automatically_update_dashboard_site %}
<script
type=
"text/javascript"
src=
"{% static "
js
/
include_ajax_live.js
"
%}"
></script>
{% endif %}
{% endblock %}
This diff is collapsed.
Click to expand it.
Lloyd Meins
@lloydmeins
mentioned in commit
6d5fb2db
·
3 years ago
mentioned in commit
6d5fb2db
mentioned in commit 6d5fb2db4c9c45c553843428fb084f34f762f781
Toggle commit list
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment