i18n+filtering fork - fluent-templates v2
at main 3.2 kB view raw
1<section class="section"> 2 <div class="container"> 3 <div class="content"> 4 <h1 class="title">{{ t("migrate-event-complete") }}</h1> 5 6 <div class="box"> 7 <article class="message is-success"> 8 <div class="message-body"> 9 <p class="has-text-weight-bold"> 10 <span class="icon has-text-success"> 11 <i class="fas fa-check-circle"></i> 12 </span> 13 {{ t("migrate-event-success-message", event_name=event_name) }} 14 </p> 15 </div> 16 </article> 17 18 <div class="mt-4"> 19 <p>{{ t("migrate-event-description") }}</p> 20 <p>{{ t("migrate-event-benefits") }}</p> 21 22 <div class="field mt-4"> 23 <label class="label">{{ t("migrate-event-details") }}</label> 24 <div class="table-container"> 25 <table class="table is-bordered is-fullwidth"> 26 <tbody> 27 <tr> 28 <th>{{ t("migrate-event-source-format") }}</th> 29 <td><code>{{ source_lexicon }}</code></td> 30 </tr> 31 <tr> 32 <th>{{ t("migrate-event-target-format") }}</th> 33 <td><code>{{ target_lexicon }}</code></td> 34 </tr> 35 <tr> 36 <th>{{ t("migrate-event-source-aturi") }}</th> 37 <td><code>{{ source_aturi }}</code></td> 38 </tr> 39 <tr> 40 <th>{{ t("migrate-event-new-aturi") }}</th> 41 <td><code>{{ migrated_aturi }}</code></td> 42 </tr> 43 </tbody> 44 </table> 45 </div> 46 </div> 47 48 <div class="buttons mt-5"> 49 <a href="{{ migrated_event_url }}" class="button is-primary"> 50 <span class="icon"> 51 <i class="fas fa-calendar-alt"></i> 52 </span> 53 <span>{{ t("migrate-event-view-migrated") }}</span> 54 </a> 55 <a href="/{{ current_handle.handle }}" class="button is-light"> 56 <span class="icon"> 57 <i class="fas fa-user"></i> 58 </span> 59 <span>{{ t("migrate-event-back-to-profile") }}</span> 60 </a> 61 </div> 62 </div> 63 </div> 64 </div> 65 </div> 66</section>