Skip to content
Draft
Show file tree
Hide file tree
Changes from 25 commits
Commits
Show all changes
55 commits
Select commit Hold shift + click to select a range
b936655
remove mostly unused moustrap.js
Akasch Dec 4, 2019
26158d3
remove unused select2
Akasch Dec 4, 2019
92a9d2a
convert to spectre, remove JS code for index, footer and aboaut
Akasch Dec 5, 2019
42a9485
Merge branch 'master' into spectre-css
Akasch Dec 16, 2019
dfe3d8e
add label texts directly to the model
Akasch Dec 16, 2019
536d761
Date/DateTime Poll: show year if other than current
Akasch Dec 16, 2019
5e7f0f2
Create date/datetime polls: fail early on wrong values, optimize erro…
Akasch Dec 16, 2019
cbae3b9
date and datetimepoll move creation to spectre, reduce JS
Akasch Dec 17, 2019
2ad7238
remove unused script/css
Akasch Dec 18, 2019
d9ea49a
vote, poll overview, create generic poll: move to spectre, vix variou…
Akasch Dec 18, 2019
ff937f6
add django messages to base template
Akasch Dec 18, 2019
0c657ad
settings page to spectre
Akasch Dec 31, 2019
adfc36f
registration to spectre-css
Akasch Dec 31, 2019
1bc3e6d
refactor navbar
Akasch Jan 4, 2020
4bd80d6
index: mobile layout, backgroud color for selected option + cleanup
Akasch Jan 4, 2020
6e6455b
layout: create dt, settings for mobile; fix bug in settings
Akasch Jan 5, 2020
f658ccd
use django password reset form
Akasch Jan 5, 2020
f1bf1bd
vote: use form, move parts of validation logic to form, add hints to …
Akasch Jan 5, 2020
eac6583
fix poppovers on poll page
Akasch Jan 5, 2020
d651d18
copy_poll: rework to form, spectrecss
Akasch Jan 6, 2020
59578e7
front page styling
Akasch Jan 7, 2020
ae8425a
invitation: spectre
Akasch Jan 7, 2020
cafcb83
edit choisvalues: use form + spectre
Akasch Jan 7, 2020
9e3d7e6
remove static gravatar image from commentedit
Akasch Jan 7, 2020
71e1bdb
poll.urls.py: migrate from url() to path()
Akasch Jan 7, 2020
d813b8f
Merge branch 'master' into spectre-css
Akasch Jan 8, 2020
e54dbd6
fix datetime edit
Akasch Jan 9, 2020
8e8bc58
fix navbar css, remove alert css, delete unused files'
Akasch Jan 22, 2020
e7219e8
delete unused files
Akasch Jan 22, 2020
1b08164
spectre: aler->toast, formating, delete commented lines
Akasch Jan 22, 2020
a313afe
groups code to spectre and forms
Akasch Jan 22, 2020
72b3496
move settings to spectre, better errorhandling in caldav code
Akasch Jun 14, 2020
5402275
migrate group search from select2 to cusom script
Akasch Jun 14, 2020
caebaa2
move Javascript vorm JQerry to VanillaJS
Akasch Jul 3, 2020
e8db773
fixes in new javascript code
Akasch Jul 8, 2020
f33195f
fix spam challenge output on comment form
Akasch Jul 8, 2020
86e010a
add polyfill for IE 10+
Akasch Jul 8, 2020
21767e0
due_date: use multifield, generally use render_form_haeder
Akasch Jul 10, 2020
5900f9c
fix styling, fix formating, fix copy poll
Akasch Jul 10, 2020
88b9593
fix general styling and javascript on universal choice creation
Akasch Jul 11, 2020
8f62b53
allow the ordering of choices in a universal poll withut JS, fix tran…
Akasch Jul 11, 2020
d246e57
base.html: fix timezone display, add lang attribute to html tag
Akasch Jul 12, 2020
2fd47cf
make timezone warning the same on poll overview and vote
Akasch Jul 12, 2020
cfdb381
update dependencies
Akasch Jul 12, 2020
c5807c0
style fixes, fix UX if no Date/Tie was selected in JS create view
Akasch May 5, 2022
50ef119
fix style and function of poll ownership in settings
Akasch May 5, 2022
bfd1068
Merge branch 'master' into spectre-css
Akasch May 5, 2022
31566d7
Merge remote-tracking branch 'github/master' into spectre-css
Akasch May 5, 2022
804736e
Merge branch 'master' into spectre-css
Akasch May 8, 2022
bcd912c
Fix Migration after Markdown
Akasch May 11, 2022
c1d002a
Merge branch 'master' into spectre-css
Akasch Jun 19, 2022
d23b977
add stiky autor collumn.
Akasch Jul 21, 2022
52ac4ef
Merge branch 'master' into spectre-css
Akasch Dec 29, 2025
2f8544c
Add pyproject.toml; fix icon errors
Akasch Dec 29, 2025
8910cad
Styling fixes
Akasch Dec 29, 2025
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
5 changes: 3 additions & 2 deletions bitpoll/base/admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,12 @@ class Meta:

class BitpollUserAdmin(UserAdmin):
fieldsets = UserAdmin.fieldsets + (
('Additional info', {'fields': ('language', 'email_invitation', 'timezone', 'auto_watch')}),
('Additional info', {'fields': ('language', 'email_invitation', 'timezone', 'auto_watch', 'displayname')}),
)
add_fieldsets = UserAdmin.add_fieldsets + (
('Additional info', {'fields': ('language', 'email_invitation', 'timezone', 'auto_watch')}),
('Additional info', {'fields': ('language', 'email_invitation', 'timezone', 'auto_watch', 'displayname')}),
)
form = BitpollUserChangeForm


admin.site.register(BitpollUser, BitpollUserAdmin)
384 changes: 0 additions & 384 deletions bitpoll/base/static/css/bootstrap-theme.css

This file was deleted.

1 change: 0 additions & 1 deletion bitpoll/base/static/css/bootstrap-theme.min.css

This file was deleted.

Loading