Camilo Nova
03ba898db3
Merge pull request #220 from mpauly/master
...
Fix for #219
2017-09-06 14:10:15 -05:00
Manatsawin Hanmongkolchai
0e38ae7ce1
database: Allow running set while database is not created
2017-08-20 19:44:16 +07:00
Manatsawin Hanmongkolchai
c8568b3f6b
Moved inline css/javascripts out to their own files
2017-08-09 19:44:48 +07:00
Manatsawin Hanmongkolchai
f8aad0c7f6
Also ignore ProgrammingError for Postgres
2017-08-08 18:39:01 +07:00
Manatsawin Hanmongkolchai
bbfa8fa7dc
database: Ignore operation errors ( #229 )
2017-08-07 23:56:20 +07:00
Martin Pauly
3f5fc73409
Use admin_site property of ModelAdmin, to make sure that the correct list of apps is used
2017-06-02 23:27:20 +02:00
Jon Dufresne
9725bb2a94
Use dict comprehension; available since Python 2.7 ( #217 )
2017-06-02 10:53:08 +02:00
Bruno Alla
1cce582edc
Fix #187 : Preserve sorting from fieldset config ( #207 )
2017-06-02 10:52:16 +02:00
Jon Dufresne
3a1f8a898b
Remove unnecessary calls to dict.keys
...
iter(dict) is equivalent to iter(dict.keys()). Can simply act on the
dict instead. Provides a more concise, Pythonic syntax and avoids an
unnecessary function call.
Inspired by Lennart Regebro's presentation "Prehistoric Patterns in
Python" at PyCon 2017. Available at:
https://www.youtube.com/watch?v=V5-JH23Vk0I
2017-06-02 10:23:21 +02:00
Camilo Nova
4268ea808a
Merge pull request #213 from felixxm/cleanup-unused
...
Removed unused variables and imports.
2017-05-25 14:38:42 -05:00
Mariusz Felisiak
3af72e167b
Removed unused variables and imports.
2017-05-25 14:02:52 +02:00
Mariusz Felisiak
fc5a32f2ac
Fixed #211 -- Added datetime.timedelta support.
2017-05-25 13:50:27 +02:00
Alan Kesselmann
47b8394a43
Added .mo file too
2017-04-10 14:03:19 +03:00
Alan Kesselmann
09f2dc7d69
Added Estonian translations
2017-04-10 13:38:27 +03:00
Camilo Nova
161c1d34be
Bump version
2017-02-17 08:16:34 -05:00
Camilo Nova
6da21af5ae
Merge pull request #195 from jazzband/updated_signal
...
Added the old value to the config_updated signal
2017-02-16 16:07:34 -05:00
Martin Pépin
be65f6536a
Add a get_changelist_form hook in the ModelAdmin
...
This method is used in the `changelist_view` to get the changelist form.
You may want to override this method to get a different form depending
on the user that makes the request. For example:
class MyConstanceAdmin(ConstanceAdmin):
def get_changelist_form(self, request):
if request.user.is_superuser:
return SuperuserForm:
else:
return super(MyConstanceAdmin, self).get_changelist_form(request)
2017-02-14 02:15:39 +01:00
Laszlo Ratsko
3ba4780a13
Fix create_perm in apps.py to use database alias given by the post_migrate signal
2017-02-05 13:27:07 +01:00
Mariusz Felisiak
46b7a02365
Removed unnecessary bytes encode.
2017-01-31 18:08:04 +01:00
Camilo Nova
2fde4f4d83
Added the old value to the config_updated signal
2017-01-31 10:41:55 -05:00
Rares Vernica
bddb6cd2ac
Fix *Reset to default* to work with boolean/checkboxes ( #191 )
...
* Fix *Reset to default* to work with boolean/checkboxes
* Add field name to each config value
* Check field name and use *checked* for checkbox and *value* otherwise
Fix #189
* Add and use raw_default and is_checkbox
2017-01-13 08:14:18 +01:00
John Carter
81b723c91b
Fix handling of MultiValueField's (eg SplitDateTimeField) on the command line. Fixes #186 ( #190 )
...
* Added failing test for setting a datetime with cli
Issue #186
* Adding myself to AUTHORS
* Handle MultiValueField in manage command, resolves #186
* newline at end
2017-01-11 09:52:19 +01:00
Camilo Nova
8db90e8087
Bump version
2016-12-23 17:39:01 -05:00
Rares Vernica (cessna, fedora)
588ac2da71
Moved "Remove to default" unded field
2016-12-01 09:40:11 -08:00
Rares Vernica (cessna, fedora)
32c760cc1d
Add "Reset to default" feature
2016-11-30 12:39:55 -08:00
John Carter
e3ea904116
Backport command functonality from django-constance-cli (squashed)
2016-11-27 18:55:21 +13:00
John Carter
4599a22bfc
Don't ignore additional fields when creating form
...
Fixes regression from 2f88a1bff2
2016-11-27 17:18:35 +13:00
Rares Vernica
6ce7f1a308
Preserve line breaks in default value
2016-11-21 11:39:08 -08:00
Rares Vernica
8da8b4278c
Add each_context to context and use dict syntax ( #176 )
2016-11-18 13:04:54 +01:00
Rares Vernica
70f1043bad
Facilitate renaming Constance in Admin ( #173 )
...
* Load app_config dynamically and use verbose_name
* Instead of assuming the app config is always going to be ConstanceConfig, load it dynamically in case the user overrides it
* Use verbose_name for page title instead of static strings for create_list
* Use verbose_name for create_list breadcrumbs
These changes allows the user to easily rename "Constance" to something else in their project.
* Fix use of verbose_name in title and breadcrumbs
2016-11-17 08:42:55 +01:00
Miguel García
dd173cd42c
Add app_config property to Config model
2016-10-27 18:27:37 +02:00
Camilo Nova
2f88a1bff2
Ignore fields in CONSTANCE_ADDITIONAL_FIELDS when casting a type
2016-10-12 16:59:56 -05:00
Camilo Nova
4fc8fdd3d0
Fix parameter ordering
2016-10-12 16:40:49 -05:00
Camilo Nova
bced16bfc7
Fixes #163
2016-10-12 16:09:18 -05:00
Mariusz Felisiak
9709b211d5
Fixed #169 . Added localize to check modified flag.
2016-10-10 23:00:35 +02:00
Maxim Luzin
1e40db7fda
Fix config ordering.
2016-10-01 18:07:40 +07:00
Camilo Nova
2c123af788
Bump version
2016-09-17 17:27:58 -05:00
Camilo Nova
bfc09f9982
Revert "Only set the attribute if value has changed"
...
This reverts commit 56fb550044 .
2016-09-17 17:23:07 -05:00
Camilo Nova
826c494fd1
Bump version
2016-09-17 15:31:02 -05:00
Camilo Nova
56fb550044
Only set the attribute if value has changed
2016-09-17 15:18:29 -05:00
Camilo Nova
080f72f58d
Bump version
2016-09-15 14:02:35 -05:00
Camilo Nova
0f049e4677
Merge pull request #159 from jazzband/signals
...
Moved the signal to its own file to avoid import errors. Fixes #158
2016-09-15 13:59:18 -05:00
Camilo Nova
5eeb77f9b0
Improved naming for arguments
2016-09-15 09:25:54 -05:00
Camilo Nova
bebc279edc
Send the config parameter as sender for the signal
2016-09-15 09:24:30 -05:00
Camilo Nova
1830556c97
☀️ Improve html layout when using fieldsets
2016-09-14 16:35:30 -05:00
Camilo Nova
1d746c080f
Rename signal to config_updated
2016-09-14 14:53:52 -05:00
Camilo Nova
395efc992f
☀️ Moved the signal to its own file to avoid import errors
2016-09-14 14:50:39 -05:00
Camilo Nova
9d4d0ab334
Bump version
2016-09-14 12:44:59 -05:00
Camilo Nova
94fabdf7c3
Added signal on change, refs #158
2016-09-14 12:22:32 -05:00
Camilo Nova
90bf97c0a9
Improved coding styles
2016-09-14 12:21:43 -05:00