···1515from slack_sdk.models.views import View
16161717from kefi.config import settings
1818-from kefi.constants import Actions, ViewType
1818+from kefi.constants import Actions, Block, ViewType
1919from kefi.models.plazas.helpers import get_or_create_current_plaza
20202121···4949 ContextBlock(
5050 elements=[
5151 PlainTextObject(
5252- text=f"Al apuntarte consumirás {settings.PLAZA_PRICE} Kefis."
5252+ text=f"Al apuntarte consumirás {settings.PLAZA_PRICE} kefis."
5353 )
5454 ]
5555 ),
···109109 HeaderBlock(text=PlainTextObject(text="¡Gracias!")),
110110 SectionBlock(
111111 text=MarkdownTextObject(
112112- text=f"Hazle llegar tu agradecimiento a un compañero por ayudarte en un proyecto.\nValor: {settings.KUDOS_PRICE} Kefis"
112112+ text=f"Hazle llegar tu agradecimiento a un compañero por ayudarte en un proyecto.\nValor: {settings.KUDOS_PRICE} kefis"
113113 ),
114114 accessory=ImageElement(
115115 image_url="https://storage.staging.dekaside.com/kefi/static/images/kudos.png",
···123123 HeaderBlock(text=PlainTextObject(text="¡Enhorabuena!")),
124124 SectionBlock(
125125 text=MarkdownTextObject(
126126- text=f"Un trabajo bien hecho, una buena idea, la certificación en un nuevo curso... ¡se merecen una enhorabuena!\nValor: {settings.CONGRATS_PRICE} Kefis"
126126+ text=f"Un trabajo bien hecho, una buena idea, la certificación en un nuevo curso... ¡se merecen una enhorabuena!\nValor: {settings.CONGRATS_PRICE} kefis"
127127 ),
128128 accessory=ImageElement(
129129 image_url="https://storage.staging.dekaside.com/kefi/static/images/congrats.png",
···145145 HeaderBlock(text=PlainTextObject(text="¡High Five!")),
146146 SectionBlock(
147147 text=MarkdownTextObject(
148148- text=f"Alguien ha sido un buen colega y te ha alegrado el día.\nValor: {settings.HIGH_FIVE_PRICE} Kefis"
148148+ text=f"Alguien ha sido un buen colega y te ha alegrado el día.\nValor: {settings.HIGH_FIVE_PRICE} kefis"
149149 ),
150150 accessory=ImageElement(
151151 image_url="https://storage.staging.dekaside.com/kefi/static/images/highfive.png",
···159159 HeaderBlock(text=PlainTextObject(text="Kefi Plaza")),
160160 SectionBlock(
161161 text=MarkdownTextObject(
162162- text=f"Cada encuentro se asignan aleatoriamente grupos de {settings.PLAZA_SIZE} personas en una sala virtual para compartir un Kefi online y hablar de los que más os guste. ¿Te unes?\nCoste: {settings.PLAZA_PRICE} Kefis"
162162+ text=f"Cada encuentro se asignan aleatoriamente grupos de {settings.PLAZA_SIZE} personas en una sala virtual para compartir un Kefi online y hablar de los que más os guste. ¿Te unes?\nCoste: {settings.PLAZA_PRICE} k"
163163 ),
164164 accessory=ImageElement(
165165 image_url="https://storage.staging.dekaside.com/kefi/static/images/kefi_plaza.png",
···169169 ActionsBlock(
170170 elements=[
171171 ButtonElement(
172172- text=PlainTextObject(text="¡Me Apunto!"),
172172+ text=PlainTextObject(text="¡Me apunto!"),
173173 action_id=Actions.SHOW_MEETS_MODAL,
174174 style="primary",
175175 )
···204204 type="modal",
205205 title=PlainTextObject(text="¡Gracias!"),
206206 close=PlainTextObject(text="Cancelar"),
207207- submit=PlainTextObject(text="Enviar Kefis"),
207207+ submit=PlainTextObject(text="Enviar kefis"),
208208 blocks=[
209209 SectionBlock(
210210- block_id="receiver",
210210+ block_id=Block.RECEIVER,
211211 text=MarkdownTextObject(text="¿A quien quieres felicitar?"),
212212 accessory=UserSelectElement(
213213 placeholder=PlainTextObject(text="Selecciona un usuario"),
···215215 ),
216216 ),
217217 InputBlock(
218218- block_id="message",
218218+ block_id=Block.MESSAGE,
219219 element=PlainTextInputElement(
220220 multiline=True, action_id=Actions.PLAIN_TEXT_INPUT
221221 ),
···223223 ),
224224 ContextBlock(
225225 elements=[
226226- PlainTextObject(text=f"Valor: {settings.KUDOS_PRICE} Kefis")
226226+ PlainTextObject(text=f"Valor: {settings.KUDOS_PRICE} kefis")
227227 ]
228228 ),
229229 ],