... |
... |
@@ -6,7 +6,23 @@ |
6 |
6 |
|
7 |
7 |
# Humor and Memes Gallery |
8 |
8 |
|
|
9 |
+{{velocity}} |
|
10 |
+#set($parentDoc = $xwiki.getDocument("Main.Categories.Race")) |
|
11 |
+#set($children = $parentDoc.getChildren()) |
9 |
9 |
|
|
13 |
+**Checking Attachments for Subpages:** |
|
14 |
+#foreach($child in $children) |
|
15 |
+ #set($childDoc = $xwiki.getDocument($child)) |
|
16 |
+ **Subpage: $childDoc.getTitle()** <br/> |
|
17 |
+ #set($childAttachments = $childDoc.getAttachmentList()) |
|
18 |
+ |
|
19 |
+ #if($childAttachments.size() > 0) |
|
20 |
+ Found **$childAttachments.size()** attachments! ✅ |
|
21 |
+ #else |
|
22 |
+ ❌ No attachments found. |
|
23 |
+ #end |
|
24 |
+#end |
|
25 |
+{{/velocity}} |
10 |
10 |
|
11 |
11 |
|
12 |
12 |
<div style="display: flex; flex-wrap: wrap; gap: 10px;"> |