Skip to content

Commit

Permalink
fix view
Browse files Browse the repository at this point in the history
  • Loading branch information
cekk committed Nov 28, 2024
1 parent cbfb5c5 commit 1865b95
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 9 deletions.
15 changes: 7 additions & 8 deletions rer/bandi/browser/bando.pt
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,13 @@
${context/tipologia_bando}
</td>
</tr>

<tr tal:define="finanziato context/finanziato" tal:condition="finanziato">
<td colspan="2">
<strong>
<span i18n:translate="finanziatori_label">Financed by EU programmes</span>
</strong>
</td>
</tr>
<tr tal:condition="context/destinatari|nothing">
<th i18n:translate="destinatari_label">Who can apply</th>
<td>
Expand Down Expand Up @@ -86,13 +92,6 @@
</div>
</td>
</tr>
<tr tal:define="finanziato context/finanziato" tal:condition="finanziato">
<td colspan="2">
<strong>
<span i18n:translate="finanziatori_label">Financed by EU programmes</span>
</strong>
</td>
</tr>
</table>
<table class="vertical listing tableRight" tal:define="foldeeps view/retrieveFolderDeepening" tal:condition="foldeeps">
<tr>
Expand Down
2 changes: 1 addition & 1 deletion rer/bandi/interfaces/bandoSchema.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class IBandoSchema(model.Schema):
"""A Dexterity schema for Annoucements"""
finanziato = schema.Bool(
title=_("finanziatori_label", default="Financed by EU programmes"),
description=_("finanziatori_help", default="Seleziona questo campo se il bando è finanziato con fondi europei."),
description=_("finanziatori_help", default=u"Seleziona questo campo se il bando è finanziato con fondi europei."),
required=False,
)

Expand Down

0 comments on commit 1865b95

Please sign in to comment.