-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathview.xml
More file actions
24 lines (20 loc) · 748 Bytes
/
view.xml
File metadata and controls
24 lines (20 loc) · 748 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<View>
<Header value="Image Quality Review"/>
<!-- Display decoded S3 path for reference -->
<View style="padding: 10px; background-color: #f5f5f5; border-radius: 4px; margin-bottom: 15px;">
<Text name="image_path" value="Path: $image"/>
</View>
<!-- The image to review -->
<Image name="img" value="$image" zoom="true"/>
<!-- Simple quality assessment -->
<View style="margin-top: 15px;">
<Header value="Is this image acceptable?"/>
<Choices name="quality" toName="img" choice="single" required="true">
<Choice value="Yes"/>
<Choice value="No"/>
</Choices>
</View>
<TextArea name="notes" toName="img"
placeholder="Optional notes..."
rows="2" maxSubmissions="1"/>
</View>