Skip to content

Commit

Permalink
Merge branch 'master' into fix_indexes
Browse files Browse the repository at this point in the history
  • Loading branch information
folix-01 committed Jan 22, 2025
2 parents 059ff7e + 61e77c0 commit 841d0df
Show file tree
Hide file tree
Showing 6 changed files with 229 additions and 209 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,20 +8,20 @@ jobs:
strategy:
max-parallel: 4
matrix:
python: ["3.7"]
python: ["3.8"]
plone: ["52"]
# exclude:
# - python: "3.7"
# plone: "51"
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
- name: Cache eggs
uses: actions/cache@v1
uses: actions/cache@v4
with:
path: eggs
key: ${{ runner.OS }}-build-python${{ matrix.python }}-${{ matrix.plone }}
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v1
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: Install dependencies
Expand Down
9 changes: 8 additions & 1 deletion docs/HISTORY.txt
Original file line number Diff line number Diff line change
@@ -1,13 +1,20 @@
Changelog
=========

1.4.7 (unreleased)
1.4.8 (unreleased)
------------------

- Do not use key/value pairs in tipologia_bando and destinatari.
[cekk]


1.4.7 (2024-12-12)
------------------

- Update it translations
[lucabel]


1.4.6 (2024-09-09)
------------------

Expand Down
3 changes: 2 additions & 1 deletion redturtle/bandi/browser/controlpanel.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
# -*- coding: utf-8 -*-
from plone.app.registry.browser import controlpanel
from redturtle.bandi.interfaces.settings import IBandoSettings
from redturtle.bandi import bandiMessageFactory as _


class BandiSettingsForm(controlpanel.RegistryEditForm):
schema = IBandoSettings
id = 'BandiSettingsForm'
label = u"Impostazioni per i bandi"
label = _("bandi_settings_label", default="Impostazioni per i bandi")


class BandiControlPanel(controlpanel.ControlPanelFormWrapper):
Expand Down
Loading

0 comments on commit 841d0df

Please sign in to comment.