@@ -14,7 +14,7 @@ def handle_cancel_show_user(call):
1414 bot .edit_message_text ("Operation canceled." , chat_id = call .message .chat .id , message_id = call .message .message_id )
1515 create_main_markup (call .message )
1616
17- @bot .message_handler (func = lambda message : is_admin (message .from_user .id ) and message .text == 'Show User' )
17+ @bot .message_handler (func = lambda message : is_admin (message .from_user .id ) and message .text == '🔍 Show User' )
1818def show_user (message ):
1919 markup = types .InlineKeyboardMarkup ()
2020 cancel_button = types .InlineKeyboardButton ("❌ Cancel" , callback_data = "cancel_show_user" )
@@ -106,14 +106,14 @@ def process_show_user(message):
106106 bio .seek (0 )
107107
108108 markup = types .InlineKeyboardMarkup (row_width = 3 )
109- markup .add (types .InlineKeyboardButton ("Reset User" , callback_data = f"reset_user:{ actual_username } " ),
110- types .InlineKeyboardButton ("IPv6-URI" , callback_data = f"ipv6_uri:{ actual_username } " ))
111- markup .add (types .InlineKeyboardButton ("Edit Username" , callback_data = f"edit_username:{ actual_username } " ),
112- types .InlineKeyboardButton ("Edit Traffic Limit " , callback_data = f"edit_traffic:{ actual_username } " ))
113- markup .add (types .InlineKeyboardButton ("Edit Expiration Days " , callback_data = f"edit_expiration:{ actual_username } " ),
114- types .InlineKeyboardButton ("Renew Password" , callback_data = f"renew_password:{ actual_username } " ))
115- markup .add (types .InlineKeyboardButton ("Renew Creation Date" , callback_data = f"renew_creation:{ actual_username } " ),
116- types .InlineKeyboardButton ("Block User" , callback_data = f"block_user:{ actual_username } " ))
109+ markup .add (types .InlineKeyboardButton ("🔄 Reset User" , callback_data = f"reset_user:{ actual_username } " ),
110+ types .InlineKeyboardButton ("🌐 IPv6-URI" , callback_data = f"ipv6_uri:{ actual_username } " ))
111+ markup .add (types .InlineKeyboardButton ("✏️ Edit Username" , callback_data = f"edit_username:{ actual_username } " ),
112+ types .InlineKeyboardButton ("📶 Edit Traffic" , callback_data = f"edit_traffic:{ actual_username } " ))
113+ markup .add (types .InlineKeyboardButton ("📅 Edit Expiration" , callback_data = f"edit_expiration:{ actual_username } " ),
114+ types .InlineKeyboardButton ("🔑 Renew Password" , callback_data = f"renew_password:{ actual_username } " ))
115+ markup .add (types .InlineKeyboardButton ("🕒 Renew Creation Date" , callback_data = f"renew_creation:{ actual_username } " ),
116+ types .InlineKeyboardButton ("⛔ Block User" , callback_data = f"block_user:{ actual_username } " ))
117117
118118 caption = formatted_details
119119 if uri_v4 :
0 commit comments