From 3ddfb6789e4fc6a75ba7410a81b0e5f3cb5f8786 Mon Sep 17 00:00:00 2001 From: felixm Date: Mon, 11 Mar 2024 17:52:44 -0400 Subject: [PATCH] Add on-target, off-traget, and no-target buttons for accountability tracking. --- main.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/main.py b/main.py index 5ed7757..c91eee0 100644 --- a/main.py +++ b/main.py @@ -92,6 +92,9 @@ class UserData: def get_ping_reply_markup(self): keyboard = [] + keyboard.append([InlineKeyboardButton("🎯 on-target", callback_data="on-target"), + InlineKeyboardButton("❌ off-target", callback_data="off-target"), + InlineKeyboardButton("⭕ no-target", callback_data="no-target"),]) tags_per_row = 5 tags = list(sorted(self.tags)) for i in range(0, len(tags), tags_per_row):