Skip to content

Commit

Permalink
Remove empty spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
marcmatias authored and turicas committed Jun 30, 2024
1 parent b90cecf commit d78a77e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions core/templates/core/dataset-list-detail.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ <h1 class="mb-3 fs-2">
<ul class="list-group">
{% if listname == "tabelas"%}
{% for table in dataset.tables %}
<a
class="list-group-item list-group-item-action"
<a
class="list-group-item list-group-item-action"
href="{% url 'core:dataset-table-detail' dataset.slug table.name %}"
>
{{ table.name|capfirst }}
Expand All @@ -43,4 +43,4 @@ <h1 class="mb-3 fs-2">
</div>
</div>
</div>
{% endblock %}
{% endblock %}
6 changes: 3 additions & 3 deletions core/templates/core/home.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ <h3 class="pt-2 mb-2 mb-xl-0 fs-5">Últimas atualizações</h3>
<div class="list-group list-group-flush px-1">
{% if recent_activities %}
{% for activity in recent_activities %}
<a
href="{% if activity.url %}
<a
href="{% if activity.url %}
{{ activity.url }}
{% else %}
#!
Expand Down Expand Up @@ -60,7 +60,7 @@ <h3 class="pt-2 mb-2 mb-xl-0 fs-5">Últimas atualizações</h3>
</div>
</div>
</section>

<section class="border-top border-bottom border-primary py-2">
<div class="container">
<div class="py-4">
Expand Down

0 comments on commit d78a77e

Please sign in to comment.