Skip to content

Commit

Permalink
Upd: add table-striped style to all tables
Browse files Browse the repository at this point in the history
  • Loading branch information
Pythonusus committed Jan 26, 2025
1 parent 5b54a3a commit 497c9ea
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion task_manager/templates/labels/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<h1 class="my-4">{{ labels_index.labels }}</h1>
<a href="{% url 'label_create' %}" class="btn btn-primary mb-3">{{ labels_index.create_label }}</a>

<table class="table table-bordered table-hover text-nowrap" data-test="urls">
<table class="table table-striped table-bordered table-hover text-nowrap" data-test="urls">
<thead>
<tr>
<th>{{ labels_index.id }}</th>
Expand Down
2 changes: 1 addition & 1 deletion task_manager/templates/statuses/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<h1 class="my-4">{{ statuses_index.statuses }}</h1>
<a href="{% url 'status_create' %}" class="btn btn-primary mb-3">{{ statuses_index.create_status }}</a>

<table class="table table-bordered table-hover text-nowrap" data-test="urls">
<table class="table table-striped table-bordered table-hover text-nowrap" data-test="urls">
<thead>
<tr>
<th>{{ statuses_index.id }}</th>
Expand Down
2 changes: 1 addition & 1 deletion task_manager/templates/tasks/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ <h1 class="my-4">{{ tasks_index.tasks }}</h1>
</div>
</div>

<table class="table table-bordered table-hover text-nowrap" data-test="urls">
<table class="table table-striped table-bordered table-hover text-nowrap" data-test="urls">
<thead>
<tr>
<th>{{ tasks_index.id }}</th>
Expand Down
2 changes: 1 addition & 1 deletion task_manager/templates/users/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

{% block content %}
<h1>{{ users_index.users }}</h1>
<table class="table table-bordered table-hover text-nowrap" data-test="urls">
<table class="table table-striped table-bordered table-hover text-nowrap" data-test="urls">
<thead>
<tr>
<th>{{ users_index.id }}</th>
Expand Down

0 comments on commit 497c9ea

Please sign in to comment.