WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

Commit 50a725a

Browse files
jjosebajjoseba
authored andcommitted
Hotfix: corregido error en edición de socias
1 parent 23f213a commit 50a725a

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

appmes/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
SECRET_KEY = env('SECRET_KEY')
3333
# SECURITY WARNING: don't run with debug turned on in production!
3434
DEBUG = env('DEBUG')
35-
VERSION = "2.3.1"
35+
VERSION = "2.3.2"
3636

3737
ALLOWED_HOSTS = env.list("ALLOWED_HOSTS")
3838
ADMINS = env.list("ADMINS")

documentation/admin/docs/es/versiones.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# Versiones
22

3-
## v2.3.1
3+
## v2.3.1 - v2.3.2
44
Julio 2025
55

66
### Errores corregidos
77

88
- HOTFIX: arreglado error en búsqueda si campo embedding está vacío
9-
9+
- HOTFIX: corregido error en edición de socias
1010

1111
## v2.3
1212
Julio 2025

market/admin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,5 +44,5 @@ class IntercoopAdmin(admin.ModelAdmin):
4444
list_filter = ["node", "external_id_needed"]
4545

4646
@admin.display(description=_("Nombre"))
47-
def namesa(self, obj):
47+
def name(self, obj):
4848
return obj.display_name

market/forms/provider.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class Meta(AccountForm.Meta):
1616
'description': CKEditorWidget(attrs={'cols': 190, 'rows': 30}),
1717
'services': CKEditorWidget(attrs={'cols': 190, 'rows': 30}),
1818
}
19-
exclude = ['embedding_description']
19+
exclude = AccountForm.Meta.exclude + ['embedding_description']
2020

2121
class CreateProviderForm(CreateAccountFormMixin, ProviderForm):
2222
pass

0 commit comments

Comments
 (0)