Spaces:
Sleeping
Sleeping
streamlit関連
Browse files
src/forms/change_request.py
CHANGED
@@ -484,7 +484,7 @@ def change_request_form() -> None:
|
|
484 |
st.markdown(f'**備考** : {st.session_state["contents"]["備考"]}')
|
485 |
|
486 |
review_button = st.button("レビューする")
|
487 |
-
display_csv("data/change_request_history.csv"
|
488 |
if review_button:
|
489 |
query_content = st.session_state["contents"]["変更内容"]
|
490 |
query_reason = st.session_state["contents"]["変更理由"]
|
|
|
484 |
st.markdown(f'**備考** : {st.session_state["contents"]["備考"]}')
|
485 |
|
486 |
review_button = st.button("レビューする")
|
487 |
+
display_csv("data/change_request_history.csv")
|
488 |
if review_button:
|
489 |
query_content = st.session_state["contents"]["変更内容"]
|
490 |
query_reason = st.session_state["contents"]["変更理由"]
|
src/forms/database_check.py
CHANGED
@@ -7,7 +7,7 @@ from src.database import display_csv
|
|
7 |
|
8 |
def database_check_form() -> None:
|
9 |
file_path = "data/change_request_history.csv"
|
10 |
-
display_csv(file_path
|
11 |
file_exists = os.path.isfile(file_path)
|
12 |
if file_exists:
|
13 |
with open(file_path, "rb") as file:
|
|
|
7 |
|
8 |
def database_check_form() -> None:
|
9 |
file_path = "data/change_request_history.csv"
|
10 |
+
display_csv(file_path)
|
11 |
file_exists = os.path.isfile(file_path)
|
12 |
if file_exists:
|
13 |
with open(file_path, "rb") as file:
|