Initial import

This commit is contained in:
Joshua Laymon
2025-08-12 20:50:46 -05:00
commit e6cb7e91aa
29 changed files with 886 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
from django import forms
class ImportForm(forms.Form):
file = forms.FileField(allow_empty_file=False)
dry_run = forms.BooleanField(initial=True, required=False, help_text="Preview changes without saving")