Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

style: Titulo para archivos adjuntos de charlas y formato lista para … #542

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
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
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
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
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