Skip to content

Commit d7c84d7

Browse files
jared-duvalclaude
andcommitted
Add disclaimer about template modification
Added note in Excel file selection frame warning users not to modify the template structure beyond adding budget data. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 7385fd4 commit d7c84d7

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

budget_justification_gui.py

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,15 +141,25 @@ def create_widgets(self):
141141
font=("Arial", 12, "bold"), padx=15, pady=12)
142142
file_frame.pack(fill=tk.X, pady=(0, 12))
143143

144-
excel_entry = tk.Entry(file_frame, textvariable=self.excel_file,
144+
# File selection row
145+
file_row = tk.Frame(file_frame)
146+
file_row.pack(fill=tk.X)
147+
148+
excel_entry = tk.Entry(file_row, textvariable=self.excel_file,
145149
font=("Arial", 11), state='readonly', width=50)
146150
excel_entry.pack(side=tk.LEFT, padx=(0, 10))
147151

148-
browse_btn = ttk.Button(file_frame, text="Browse...",
152+
browse_btn = ttk.Button(file_row, text="Browse...",
149153
command=self.browse_excel,
150154
style="Blue.TButton")
151155
browse_btn.pack(side=tk.LEFT)
152156

157+
# Disclaimer
158+
disclaimer = tk.Label(file_frame,
159+
text="Note: The Excel template must not be modified beyond adding budget data.",
160+
font=("Arial", 9, "italic"), fg="#666")
161+
disclaimer.pack(anchor=tk.W, pady=(8, 0))
162+
153163
# Output directory selection
154164
output_frame = tk.LabelFrame(content, text="2. Select Output Location",
155165
font=("Arial", 12, "bold"), padx=15, pady=12)

0 commit comments

Comments
 (0)