|
|
Linia 1: |
Linia 1: |
|
| |
| <noinclude> | | <noinclude> |
| This is the event template for Modern Mystery School (MMS) related activities. | | This is the event template for Modern Mystery School (MMS) related activities. |
Linia 25: |
Linia 24: |
| </noinclude> | | </noinclude> |
| <includeonly> | | <includeonly> |
| <div class="event-box" style="border:1px solid #ccc; padding:1em; margin:1em 0; border-radius:10px; background:#f9f9f9;">
| |
| <h3 style="margin-top:0;">{{{title|{{PAGENAME}}}}}</h3>
| |
|
| |
| {{#if:{{{type|}}}|<p><strong>Type:</strong> {{{type}}}</p>}}
| |
| <p><strong>Date:</strong> {{{startdate}}}{{#if:{{{enddate|}}}| – {{{enddate}}}}}</p>
| |
| <p><strong>Time:</strong> {{{starttime|}}}{{#if:{{{endtime|}}}| – {{{endtime}}}}}</p>
| |
| <p><strong>Location:</strong> {{{locationname|}}}{{#if:{{{locationaddress|}}}|, {{{locationaddress}}}}}</p>
| |
| {{#if:{{{facilitator|}}}|<p><strong>Facilitator:</strong> {{{facilitator}}}</p>}}
| |
| {{#if:{{{language|}}}|<p><strong>Language:</strong> {{{language}}}</p>}}
| |
| {{#if:{{{duration|}}}|<p><strong>Duration:</strong> {{{duration}}}</p>}}
| |
|
| |
| {{#if:{{{image|}}}|<div style="text-align:center;"><img src={{{image}}} style="max-width:100%; height:auto;" /></div>}}
| |
| {{#if:{{{description|}}}|<p><strong>Description:</strong> {{{description}}}</p>}}
| |
| {{#if:{{{price|}}}|<p><strong>Price:</strong> {{{price}}} {{#if:{{{currency|}}}|{{{currency}}}}}</p>}}
| |
| {{#if:{{{registration|}}}|<p><strong>Registration:</strong> {{{registration}}}</p>}}
| |
| {{#if:{{{externalurl|}}}|<p><strong>More info:</strong> [{{{externalurl}}} {{{externalurl}}}]</p>}}
| |
| {{#if:{{{notes|}}}|<p><strong>Notes:</strong> {{{notes}}}</p>}}
| |
| </div>
| |
| </includeonly>
| |
|
| |
| <noinclude>
| |
| == Template:Event ==
| |
| Acest format este folosit pentru afișarea de evenimente într-o formă structurată și estetică.
| |
|
| |
| === Parametri acceptați ===
| |
| * <code>title</code> – Titlul evenimentului
| |
| * <code>type</code> – Tipul (ex: activare, inițiere, curs, procedură)
| |
| * <code>startdate</code> – Data de început (YYYY-MM-DD)
| |
| * <code>enddate</code> – Data de final (opțională)
| |
| * <code>starttime</code> – Ora de început (HH:MM)
| |
| * <code>endtime</code> – Ora de final (opțională)
| |
| * <code>locationname</code> – Numele locului
| |
| * <code>locationaddress</code> – Adresa locului
| |
| * <code>facilitator</code> – Numele ghidului / instructorului
| |
| * <code>language</code> – Limba de desfășurare
| |
| * <code>duration</code> – Durata (ex: 1 zi, 2 ore)
| |
| * <code>image</code> – Link imagine (extern sau local)
| |
| * <code>description</code> – Descriere eveniment
| |
| * <code>registration</code> – Link sau detalii înscriere
| |
| * <code>externalurl</code> – Pagină web cu detalii suplimentare
| |
| * <code>price</code> – Preț
| |
| * <code>currency</code> – Monedă (RON, EUR, USD etc.)
| |
| * <code>notes</code> – Observații / notițe opționale
| |
|
| |
| === Exemplu ===
| |
| <pre>
| |
| {{Event
| |
| |title=Empower Thyself – Inițiere
| |
| |type=Inițiere MMS
| |
| |startdate=2025-07-10
| |
| |starttime=10:00
| |
| |enddate=2025-07-10
| |
| |endtime=18:00
| |
| |locationname=Centrul Spiritual
| |
| |locationaddress=Str. Luminării 22, București
| |
| |facilitator=Roxana Gabor-Iliescu
| |
| |language=română
| |
| |duration=1 zi
| |
| |image=https://spiritualtraining.eu/images/empower.jpg
| |
| |description=Activare + Inițiere după linia MMS
| |
| |registration=[https://spiritualtraining.eu/register Înregistrare aici]
| |
| |externalurl=https://spiritualtraining.eu/empower
| |
| |price=750
| |
| |currency=RON
| |
| |notes=Locuri limitate
| |
| }}
| |
| </pre>
| |
|
| |
| <templatedata>
| |
| {
| |
| "description": "Template pentru descrierea unui eveniment (activări, inițieri, cursuri, proceduri, etc.) în cadrul Modern Mystery School sau alte contexte spirituale.",
| |
| "params": {
| |
| "title": {
| |
| "label": "Titlul evenimentului",
| |
| "description": "Numele oficial sau titlul evenimentului",
| |
| "type": "string",
| |
| "required": true
| |
| },
| |
| "type": {
| |
| "label": "Tipul evenimentului",
| |
| "description": "Ex: Activare, Inițiere, Curs, Atelier, Procedură, Prezentare etc.",
| |
| "type": "string",
| |
| "required": false
| |
| },
| |
| "startdate": {
| |
| "label": "Data de început",
| |
| "description": "Format: YYYY-MM-DD",
| |
| "type": "date",
| |
| "required": true
| |
| },
| |
| "starttime": {
| |
| "label": "Ora de început",
| |
| "description": "Format: HH:MM (opțional)",
| |
| "type": "string",
| |
| "required": false
| |
| },
| |
| "enddate": {
| |
| "label": "Data de sfârșit",
| |
| "description": "Format: YYYY-MM-DD (opțional)",
| |
| "type": "date",
| |
| "required": false
| |
| },
| |
| "endtime": {
| |
| "label": "Ora de sfârșit",
| |
| "description": "Format: HH:MM (opțional)",
| |
| "type": "string",
| |
| "required": false
| |
| },
| |
| "locationname": {
| |
| "label": "Locația - nume",
| |
| "description": "Ex: Sala Albastră, Temple of Light, Hotel Triumf",
| |
| "type": "string",
| |
| "required": false
| |
| },
| |
| "locationaddress": {
| |
| "label": "Adresa locației",
| |
| "description": "Adresă completă: stradă, oraș, județ, țară",
| |
| "type": "string",
| |
| "required": false
| |
| },
| |
| "facilitator": {
| |
| "label": "Facilitator / Trainer",
| |
| "description": "Numele persoanei sau persoanelor care susțin evenimentul",
| |
| "type": "string",
| |
| "required": false
| |
| },
| |
| "language": {
| |
| "label": "Limba evenimentului",
| |
| "description": "Ex: Română, Engleză, Bilingv",
| |
| "type": "string",
| |
| "required": false
| |
| },
| |
| "duration": {
| |
| "label": "Durata evenimentului",
| |
| "description": "Ex: 1 zi, 2 ore, weekend",
| |
| "type": "string",
| |
| "required": false
| |
| },
| |
| "image": {
| |
| "label": "Imagine",
| |
| "description": "Numele fișierului încărcat (fără prefix File:). Ex: EvenimentMMS.jpg",
| |
| "type": "string",
| |
| "required": false
| |
| },
| |
| "description": {
| |
| "label": "Descriere",
| |
| "description": "Text scurt sau extins care descrie evenimentul",
| |
| "type": "string",
| |
| "required": false
| |
| },
| |
| "registration": {
| |
| "label": "Înregistrare",
| |
| "description": "Text privind înscrierea sau link de înscriere",
| |
| "type": "string",
| |
| "required": false
| |
| },
| |
| "externalurl": {
| |
| "label": "Link extern",
| |
| "description": "Pagină externă oficială sau de prezentare",
| |
| "type": "string",
| |
| "required": false
| |
| },
| |
| "price": {
| |
| "label": "Preț",
| |
| "description": "Prețul participării la eveniment",
| |
| "type": "string",
| |
| "required": false
| |
| },
| |
| "currency": {
| |
| "label": "Monedă",
| |
| "description": "Ex: RON, EUR, USD",
| |
| "type": "string",
| |
| "required": false
| |
| },
| |
| "notes": {
| |
| "label": "Note suplimentare",
| |
| "description": "Informații adiționale, condiții, observații etc.",
| |
| "type": "string",
| |
| "required": false
| |
| }
| |
| }
| |
| }
| |
| </templatedata>
| |
|
| |
| <div class="event-box" style="border:2px solid #b5a642; border-radius:10px; padding:1em; background:#fdfbe7; margin:1em 0;"> | | <div class="event-box" style="border:2px solid #b5a642; border-radius:10px; padding:1em; background:#fdfbe7; margin:1em 0;"> |
| <div style="font-size:1.5em; font-weight:bold; color:#5e4b00; margin-bottom:0.5em;">{{{title}}}</div> | | <div style="font-size:1.5em; font-weight:bold; color:#5e4b00; margin-bottom:0.5em;">{{{title}}}</div> |
Linia 265: |
Linia 80: |
| </div>}} | | </div>}} |
| </div> | | </div> |
| | | </includeonly> |
| </noinclude> | |
| | |
| <noinclude> | | <noinclude> |
| {{Documentation}} | | {{Documentation}} |
| [[Category:Event templates]] | | [[Category:Event templates]] |
| </noinclude> | | </noinclude> |