Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
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
4 changes: 2 additions & 2 deletions backend/conferences/models/conference.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from timezone_field import TimeZoneField

from helpers.models import GeoLocalizedModel
from i18n.fields import I18nCharField, I18nTextField
from i18n.fields import I18nTextField

from .deadline import Deadline, DeadlineStatus

Expand All @@ -24,7 +24,7 @@ class Conference(GeoLocalizedModel, TimeFramedModel, TimeStampedModel):
null=True,
)

name = I18nCharField(_("name"), max_length=100)
name = models.CharField(_("name"), max_length=100)
code = models.CharField(_("code"), max_length=100, unique=True)
timezone = TimeZoneField()
logo = models.ImageField(_("logo"), upload_to=get_upload_to, blank=True)
Expand Down
2 changes: 1 addition & 1 deletion backend/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ known-first-party = [


[project]
requires-python = ">=3.13.5"
requires-python = ">=3.13,<4.0"
dependencies = [
"django==5.2.8",
"django-environ==0.10.0",
Expand Down
Loading