Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
5 changes: 3 additions & 2 deletions templates/blocks/talk.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ <h3 class="title">{{ this.title }}</h3>
{{this.details}}
</div>
<div class="attachments">
{{this.attach}}
<h4>Adjuntos</h4>
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

En el escenario que no existan anexos el va a mostrar este titulo y luego una sección en blanco, creo que seria bueno verificar si tiene anexos y en caso que no, evitar mostrar esta sección

{{this.attach}}
</div>
</div>
</div>
6 changes: 3 additions & 3 deletions templates/nosotros-miembro.html
Original file line number Diff line number Diff line change
Expand Up @@ -72,11 +72,11 @@ <h3>{{bag('nosotros', alt, 'post_usuario')}}</h3>
{% if eventos %}
<h3>Charlas</h3>
<div class="events-user row"></div>
<ul>
{% for event in eventos %}
<div>
<a href="{{event|url}}">{{event.title}}</a>
</div>
<li><a href="{{event|url}}">{{event.title}}</a></li>
Copy link
Copy Markdown
Member

@Scot3004 Scot3004 Sep 16, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

creo que se vería mejor el código si ajustas el espaciado de este bloque de código

{% endfor %}
</ul>
</div>
{% endif %}
</div>
Expand Down