Skip to content

Commit eaa0e77

Browse files
committed
feat: Improves team UI
1 parent 0e9ae17 commit eaa0e77

File tree

3 files changed

+31
-15
lines changed

3 files changed

+31
-15
lines changed

app/modules/team/templates/team/index.html

Lines changed: 30 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -15,24 +15,40 @@
1515

1616
<div class="row row-cols-1 row-cols-lg-3 row-cols-md-2 row-cols-12 g-4">
1717

18-
<div class="col">
19-
20-
<div class="card h-100 p-4">
21-
<img src="{{ url_for('static', filename='media/logos/university_of_seville.svg') }}"
22-
class="card-img-top mb-4 logo-img" alt="University of Seville">
23-
<div class="card-body custom-card-body">
24-
<h5 class="card-title">University of Seville, Spain</h5>
25-
<p class="card-text">
26-
Performs active development of the application and is responsible for code maintenance,
27-
deployment, operation of services and new functionalities.
28-
</p>
29-
</div>
30-
<div class="card-footer">
31-
<a href="http://www.us.es" target="_blank">www.us.es</a>
18+
<div class="col">
19+
20+
<div class="card h-100 p-4">
21+
<img src="{{ url_for('static', filename='media/logos/university_of_seville.svg') }}"
22+
class="card-img-top mb-4 logo-img" alt="University of Seville">
23+
24+
<div class="card-body custom-card-body">
25+
<h5 class="card-title">University of Seville, Spain</h5>
26+
<p class="card-text">
27+
Performs active development of the application and is responsible for code maintenance,
28+
deployment, operation of services and new functionalities.
29+
</p>
30+
31+
<!-- Perfil personal -->
32+
<div class="d-flex align-items-center mt-4">
33+
<img src="{{ url_for('static', filename='media/team/david_romero_organvidez.jpg') }}"
34+
alt="David Romero" class="rounded-circle me-3" style="width: 64px; height: 64px; object-fit: cover;">
35+
<div>
36+
<div class="fw-bold">David Romero-Organvidez</div>
37+
<div class="text-muted">PhD Student / Technical Director</div>
38+
<a href="mailto:david.romero@us.es" class="text-decoration-none">drorganvidez@us.es</a>
3239
</div>
3340
</div>
41+
<!-- /Perfil personal -->
42+
43+
</div>
3444

45+
<div class="card-footer">
46+
<a href="http://www.us.es" target="_blank">www.us.es</a>
3547
</div>
48+
</div>
49+
50+
</div>
51+
3652

3753
<div class="col">
3854

472 KB
Loading

rosemary/commands/factlabel_generate_missing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def factlabel_generate_missing():
3333
task_manager.enqueue_task(
3434
"app.modules.hubfile.tasks.compute_factlabel",
3535
hubfile_id=hubfile.id,
36-
timeout=30, # ⏱️ límite de 30s
36+
timeout=5,
3737
)
3838
count_enqueued += 1
3939
click.echo(

0 commit comments

Comments
 (0)