-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
### Описание PR'ра Я хочу кричать ### Медиа ![изображение](https://github.com/user-attachments/assets/4306a38d-69d6-4922-be1d-bf6018291903) ![изображение](https://github.com/user-attachments/assets/ce6766ca-c407-4dc5-b87f-7151e6feee7b) ![изображение](https://github.com/user-attachments/assets/d0f04193-b920-4211-82e3-514f541e7e22) ![изображение](https://github.com/user-attachments/assets/c562d9ec-8de9-4f71-bde3-ca05c04b17d7) ### Изменения changes: NOT
- Loading branch information
1 parent
fcc7803
commit f4319df
Showing
19 changed files
with
891 additions
and
65 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +0,0 @@ | ||
from .chat import ChatModule | ||
|
||
__all__ = ['ChatModule'] | ||
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
from .main import admin_main_window |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
import dearpygui.dearpygui as dpg | ||
from systems.loc import Localization as loc | ||
|
||
from .manage_server_settings import manage_server_settings | ||
from .manage_users import user_management | ||
|
||
|
||
async def admin_main_window(): | ||
dpg.add_menu( | ||
label=loc.get_string("admin_control_menu"), | ||
tag="admin_control_menu_bar", | ||
parent="main_bar", | ||
) | ||
|
||
dpg.add_menu_item( | ||
label=loc.get_string("user_management_label"), | ||
parent="admin_control_menu_bar", | ||
callback=user_management, | ||
) | ||
|
||
dpg.add_menu_item( | ||
label=loc.get_string("manage_server_settings_lable"), | ||
parent="admin_control_menu_bar", | ||
callback=manage_server_settings, | ||
) |
Oops, something went wrong.