You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: django/applications/catmaid/control/annotationadmin.py
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -82,6 +82,7 @@ class TransformImportForm(forms.Form):
82
82
x_offset=forms.FloatField(initial=0.0, required=False, help_text="A offset that is added to each X shift")
83
83
y_offset=forms.FloatField(initial=0.0, required=False, help_text="A offset that is added to each Y shift")
84
84
z_offset=forms.FloatField(initial=0.0, required=False, help_text="A offset that is added to each Z shift")
85
+
z_lookup_offset=forms.IntegerField(initial=0, required=False, help_text="An offset that is added to each Z look-up index. Slices before won't be transformed.")
85
86
delimiter=forms.CharField(initial=',', required=False, help_text="The delimiter used in the transform CSV")
86
87
transform_type=forms.ChoiceField(choices=TRANSFORM_TYPE_CHOICES, required=True, help_text="The type of tranformaton")
0 commit comments