Changes for page ИТ Отдел
Last modified by Алексей Александрович Иванов on 2025/10/31 08:32
From version 30.1
edited by root_xwiki
on 2025/10/18 07:12
on 2025/10/18 07:12
Change comment:
There is no comment for this version
To version 3.1
edited by root_xwiki
on 2025/10/08 08:09
on 2025/10/08 08:09
Change comment:
There is no comment for this version
Summary
-
Page properties (1 modified, 0 added, 0 removed)
-
Attachments (0 modified, 0 added, 1 removed)
-
Objects (0 modified, 0 added, 1 removed)
Details
- Page properties
-
- Content
-
... ... @@ -1,37 +1,29 @@ 1 -= ИТ Отдел = 1 +{{velocity}} 2 +## Получаем текущее пространство (для nested spaces) 3 +#set($currentDocRef = $doc.documentReference) 4 +#set($currentSpaceRef = $currentDocRef.lastSpaceReference) 2 2 3 -Добро пожаловать в раздел инструкций IT отдела. Ниже представлены все доступные инструкции: 6 +## Запрос всех дочерних страниц (nested pages в XWiki 14+) 7 +#set($query = "select doc.fullName from XWikiDocument as doc where doc.space like '${doc.space}.%' and doc.name = 'WebHome' order by doc.title") 8 +#set($childPages = $services.query.hql($query).execute()) 4 4 10 +## Альтернатива для плоской структуры (если nested spaces не используются): 11 +## #set($childPages = $services.query.xwql("where doc.space = '${doc.space}' and doc.name <> 'WebHome' order by doc.title").execute()) 5 5 13 +#set($hasInstructions = false) 14 +#if($childPages && $childPages.size() > 0) 15 + #set($hasInstructions = true) 16 +#end 17 +{{/velocity}} 6 6 7 - [[введитетекстссылки>>attach:«Компьютерщики» — совет «выключить и снова включить» (1080p).mp4]]19 += IT отдел 8 8 21 +Добро пожаловать в раздел инструкций IT отдела. Ниже представлены все доступные инструкции: 9 9 10 - {{embed URL="https://vk.com/video-145404816_456246869" width="853"height="480"autoplay="1" hd="2"/}}23 +== Инструкции отдела 11 11 12 -<!-- Fallback: Если embed не загружается, показываем кнопку-ссылку на VK --> 13 -{{velocity}}#if($xwiki.ssx.get("embedError")) <!-- Псевдопроверка; замените на реальную, если нужно --> 14 - <div style="text-align: center; margin: 20px auto; max-width: 853px;"> 15 - <a href="https://vk.com/video-145404816_456246869?z=video145404816_456246869%2Fpl_cat_-145404816%2F&autoplay=1&hd=2" target="_blank" class="btn btn-primary" style="background: #4c75a3; color: white; padding: 15px 30px; border-radius: 8px; font-size: 1.1em; text-decoration: none; display: inline-block; box-shadow: 0 4px 8px rgba(0,0,0,0.1);"> 16 - <span style="vertical-align: middle;">▶</span> Открыть видео в VK (HD, Автостарт) 17 - </a> 18 - <p style="text-align: center; font-size: 0.9em; color: #666; margin-top: 10px;">Инструкционное видео для IT-отдела (нажмите для просмотра)</p> 19 - </div> 20 -#end{{/velocity}} 21 - 22 -== Инструкции отдела == 23 - 24 24 {{velocity}} 25 - 26 -## Получаем текущее пространство 27 -#set($currentSpace = $doc.space) 28 - 29 -## Запрос для nested spaces (XWiki 14+: "ИТ Отдел.Active Directory") 30 -#set($query = "select doc.fullName from XWikiDocument as doc where doc.space like '${currentSpace}.%' and doc.name = 'WebHome' order by doc.title") 31 -#set($childPages = $services.query.hql($query).execute()) 32 - 33 -## Проверяем, есть ли инструкции 34 -#if($childPages && $childPages.size() > 0) 26 +#if($hasInstructions) 35 35 {{html clean="false"}} 36 36 <div class="row justify-content-start"> 37 37 #foreach($childPageFullName in $childPages) ... ... @@ -38,18 +38,18 @@ 38 38 #set($childDoc = $xwiki.getDocument($childPageFullName)) 39 39 #set($childTitle = $childDoc.getPlainTitle()) 40 40 #set($childURL = $childDoc.getURL()) 33 + #set($childDescription = "Нажмите для просмотра инструкции") 41 41 42 - <div class="col-md-6 col-lg-4 mb-3"> 43 - <div class="instruction-card card shadow-sm border-0 rounded-3"> 44 - <div class="card-accent"></div> 45 - <div class="card-body p-3 text-center d-flex flex-column"> 46 - <div class="icon-wrapper mb-2 mx-auto rounded-circle bg-info bg-opacity-10"> 47 - <img src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzODQgNTEyIj48cGF0aCBmaWxsPSIjMTdhMmI4IiBkPSJNMCAxMjhDMCA5Mi43IDE0LjMgNjQgNDggNjRIMzM2YzMzLjcgMCA0OCAyOC43IDQ4IDY0VjQ0OGMwIDM1LjMtMTQuMyA2NC00OCA2NEg0OGMtMzMuNyAwLTQ4LTI4LjctNDgtNjRWMTI4em0yNTYgMTYwYzAgMTcuNy0xNC4zIDMyLTMyIDMySDk2Yy0xNy43IDAtMzItMTQuMy0zMi0zMnNxMTQuMy0zMiAzMi0zMmhxMTI4YzE3LjcgMCAzMiAxNC4zIDMyIDMydi1tLTMyIDk2YzE3LjcgMCAzMi0xNC4zIDMyLTMycy0xNC4zLTMyLTMyLTMySDk2Yy0xNy43IDAtMzIgMTQuMy0zMiAzMnNxMTQuMyAzMiAzMiAzMmhxMTI4eiIvPjwvc3ZnPg==" alt="Документ" style="width: 32px; height: 32px;"> 35 + <div class="col-md-6 col-lg-4 mb-4"> 36 + <div class="card shadow-sm border-0 rounded-3 card-hover" style="transition: transform 0.3s ease, box-shadow 0.3s ease;"> 37 + <div class="card-body p-4 text-center"> 38 + <div class="icon-wrapper mb-3 mx-auto rounded-circle bg-info bg-opacity-10 p-3" style="width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; border: 2px solid rgba(23,162,184,0.2);"> 39 + <i class="fas fa-file-alt" style="font-size: 28px; color: #17a2b8;"></i> 48 48 </div> 49 - <h 5class="card-titlemb-2" style="font-size: 1.05rem; font-weight: 600; color:#333; line-height: 1.3;">$childTitle</h5>50 - <p class=" card-texttext-muted mb-3flex-grow-1" style="font-size: 0.85rem;line-height: 1.4;">Инструкция для сотрудников</p>51 - <a href="$childURL" class="btn btn-info btn-smrounded-pill" style="padding:0.4rem1.2rem;font-size:0.9rem;">52 - Открыть 41 + <h4 class="h5 fw-semibold mb-2">$childTitle</h4> 42 + <p class="text-muted mb-3" style="font-size: 0.9rem;">$childDescription</p> 43 + <a href="$childURL" class="btn btn-info rounded-pill px-4 py-2" style="background-color: #17a2b8; border-color: #17a2b8; color: white; text-decoration: none; display: inline-block;"> 44 + <i class="fas fa-arrow-right me-2"></i>Открыть инструкцию 53 53 </a> 54 54 </div> 55 55 </div> ... ... @@ -56,86 +56,28 @@ 56 56 </div> 57 57 #end 58 58 </div> 59 - 60 - <style> 61 - .instruction-card { 62 - transition: transform 0.3s ease, box-shadow 0.3s ease; 63 - background: white; 64 - border: 1px solid #e9ecef; 65 - min-height: 200px; 66 - display: flex; 67 - flex-direction: column; 68 - position: relative; 69 - overflow: hidden; 70 - } 71 - .instruction-card:hover { 72 - transform: translateY(-5px); 73 - box-shadow: 0 8px 20px rgba(23,162,184,0.2) !important; 74 - } 75 - .card-accent { 76 - position: absolute; 77 - top: 0; 78 - left: 0; 79 - width: 100%; 80 - height: 4px; 81 - background: linear-gradient(90deg, #17a2b8, #5bc0de); 82 - } 83 - .icon-wrapper { 84 - width: 50px; 85 - height: 50px; 86 - display: flex; 87 - align-items: center; 88 - justify-content: center; 89 - border: 2px solid rgba(23,162,184,0.15); 90 - } 91 - .card-body { 92 - flex: 1; 93 - display: flex; 94 - flex-direction: column; 95 - justify-content: space-between; 96 - } 97 - .btn-info { 98 - background-color: #17a2b8; 99 - border-color: #17a2b8; 100 - color: white; 101 - transition: all 0.3s; 102 - } 103 - .btn-info:hover { 104 - background-color: #138496; 105 - transform: scale(1.05); 106 - } 107 - .row { 108 - display: flex; 109 - flex-wrap: wrap; 110 - margin: 0 -12px; 111 - } 112 - .col-lg-4 { 113 - flex: 0 0 33.3333%; 114 - max-width: 33.3333%; 115 - padding: 0 12px; 116 - } 117 - .col-md-6 { 118 - flex: 0 0 50%; 119 - max-width: 50%; 120 - padding: 0 12px; 121 - } 122 - .mb-3 { 123 - margin-bottom: 1rem; 124 - } 125 - @media (max-width: 1200px) { 126 - .col-lg-4 { flex: 0 0 50%; max-width: 50%; } 127 - } 128 - @media (max-width: 768px) { 129 - .col-lg-4, .col-md-6 { flex: 0 0 100%; max-width: 100%; } 130 - .instruction-card { min-height: 180px; } 131 - } 132 - </style> 133 133 {{/html}} 134 134 #else 135 - {{info}}В этом разделе пока нет инструкций. Создайте новую страницу через кнопку **Create**.{{/info}}53 + {{info}}В этом разделе пока нет инструкций. Создайте новую страницу через кнопку Create.{{/info}} 136 136 #end 137 137 {{/velocity}} 138 138 139 -== Добавить новую инструкцию ==57 +== Добавить новую инструкцию 140 140 141 141 Для создания новой инструкции нажмите **Create** в меню выше и выберите родительское пространство **"ИТ Отдел"**. 60 + 61 +{{velocity}} 62 +<style> 63 + .card-hover:hover { 64 + transform: translateY(-5px); 65 + box-shadow: 0 8px 20px rgba(23,162,184,0.2) !important; 66 + } 67 + .btn:hover { 68 + opacity: 0.9; 69 + } 70 + .icon-wrapper i { 71 + font-size: 28px; 72 + } 73 +</style> 74 +{{/velocity}} 75 +
- «Компьютерщики» — совет «выключить и снова включить» (1080p).mp4
-
- Author
-
... ... @@ -1,1 +1,0 @@ 1 -XWiki.root_xwiki - Size
-
... ... @@ -1,1 +1,0 @@ 1 -48.9 MB - Content
- XWiki.XWikiComments[0]
-
- Author
-
... ... @@ -1,1 +1,0 @@ 1 -XWiki.root_xwiki - Comment
-
... ... @@ -1,3 +1,0 @@ 1 -Первый :) 2 - 3 - - Date
-
... ... @@ -1,1 +1,0 @@ 1 -2025-10-09 05:48:33.845