Skip to content

Commit c83e6a9

Browse files
authored
Merge pull request #31 from danfimov/feat-integration-with-scheduler
chore: add taskiq favicon
2 parents 19f5e97 + 63047e0 commit c83e6a9

File tree

11 files changed

+7
-19
lines changed

11 files changed

+7
-19
lines changed

docs/assets/favicon.ico

72.6 KB
Binary file not shown.

docs/assets/favicon.svg

Lines changed: 0 additions & 11 deletions
This file was deleted.

mkdocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ nav:
2020
theme:
2121
name: material
2222
language: ru
23-
favicon: assets/favicon.svg
23+
favicon: assets/favicon.ico
2424
features:
2525
- toc.follow
2626
- toc.integrate

taskiq_dashboard/api/routers/schedule.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,6 @@ async def handle_schedule_details(
101101
)
102102
for schedule_source in scheduler.sources:
103103
for schedule in await schedule_source.get_schedules():
104-
print(schedule.schedule_id)
105104
if schedule.schedule_id == str(schedule_id):
106105
schedule_dict = schedule.model_dump()
107106
schedule_dict['source'] = schedule_source.__class__.__name__
57.5 KB
Binary file not shown.

taskiq_dashboard/api/templates/404.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!DOCTYPE html>
2-
<html lang="ru">
2+
<html lang="en">
33
<head>
44
<title>Ooops, 404</title>
55
<meta name="description" content="Page not found in Taskiq Dashboard">

taskiq_dashboard/api/templates/home.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!DOCTYPE html>
2-
<html lang="ru">
2+
<html lang="en">
33
<head>
44
<title>Taskiq Dashboard</title>
55
<meta name="description" content="Main page of Taskiq Dashboard">

taskiq_dashboard/api/templates/schedule_details.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!DOCTYPE html>
2-
<html lang="ru">
2+
<html lang="en">
33
<head>
44
<title>Schedule Details</title>
55
<meta name="description" content="Schedule details in Taskiq Dashboard">

taskiq_dashboard/api/templates/schedule_page.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!DOCTYPE html>
2-
<html lang="ru">
2+
<html lang="en">
33
<head>
44
<title>Taskiq Dashboard</title>
55
<meta name="description" content="Schedule list page of Taskiq Dashboard">

taskiq_dashboard/api/templates/scripts/copy-button.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ document.addEventListener('alpine:init', () => {
88
if (navigator.clipboard) {
99
await navigator.clipboard.writeText(this.textToCopy);
1010
} else {
11-
// Fallback для старых браузеров
11+
// Fallback for old browsers
1212
const textarea = document.createElement('textarea');
1313
textarea.value = this.textToCopy;
1414
document.body.appendChild(textarea);

0 commit comments

Comments
 (0)