Gestion de paquetage, aide intégrée et message de bienvenue
Release Creation / build (release) Successful in 59s
Release Creation / build (release) Successful in 59s
This commit is contained in:
@@ -0,0 +1,34 @@
|
||||
<section class="dnc-chat-card dnc-chat-card-item dnc-chat-card-mission-pack">
|
||||
<header class="chat-card-header">
|
||||
<div class="chat-card-heading">
|
||||
<p class="chat-card-kicker">{{localize "DNC.Chat.Kicker.Logistics"}}</p>
|
||||
<h2>{{title}}</h2>
|
||||
<p class="chat-card-subtitle">{{actorName}}</p>
|
||||
</div>
|
||||
<div class="chat-card-seal {{#if missingCount}}failure{{else}}success{{/if}}">
|
||||
{{createdCount}}
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<div class="chat-pill-row">
|
||||
<span class="chat-pill success">{{localize "DNC.Macro.MissionPack.ItemsAdded"}} {{createdCount}}</span>
|
||||
{{#if missingCount}}<span class="chat-pill failure">{{localize "DNC.Macro.MissionPack.ItemsMissing"}} {{missingCount}}</span>{{/if}}
|
||||
</div>
|
||||
|
||||
<p class="chat-note">
|
||||
{{#if missingCount}}
|
||||
{{localize "DNC.Macro.MissionPack.PartialChatSummary"}}
|
||||
{{else}}
|
||||
{{localize "DNC.Macro.MissionPack.CompleteChatSummary"}}
|
||||
{{/if}}
|
||||
</p>
|
||||
|
||||
<ul class="chat-details">
|
||||
{{#each draws}}
|
||||
<li>
|
||||
<strong>{{this.label}}</strong> : {{this.display}}
|
||||
{{#if this.missingSummary}}<br>{{localize "DNC.Macro.MissionPack.Missing"}} : {{this.missingSummary}}{{/if}}
|
||||
</li>
|
||||
{{/each}}
|
||||
</ul>
|
||||
</section>
|
||||
@@ -0,0 +1,40 @@
|
||||
<section class="dnc-chat-card dnc-chat-card-welcome">
|
||||
<header class="chat-card-header">
|
||||
<div class="chat-card-heading">
|
||||
<p class="chat-card-kicker">{{localize "DNC.Welcome.Kicker"}}</p>
|
||||
<h2>{{title}}</h2>
|
||||
<p class="chat-card-subtitle">{{subtitle}}</p>
|
||||
</div>
|
||||
<div class="chat-card-seal success">
|
||||
{{localize "DNC.Welcome.Seal"}}
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<p class="chat-note chat-welcome-intro">{{intro}}</p>
|
||||
|
||||
<ul class="chat-details chat-details-ornate">
|
||||
{{#each bullets}}
|
||||
<li>{{this}}</li>
|
||||
{{/each}}
|
||||
</ul>
|
||||
|
||||
<p class="chat-note chat-welcome-link">
|
||||
<strong>{{helpLabel}}</strong>
|
||||
{{#if helpLink}}
|
||||
{{{helpLink}}}
|
||||
{{else}}
|
||||
{{helpFallback}}
|
||||
{{/if}}
|
||||
</p>
|
||||
|
||||
<p class="chat-note">
|
||||
<strong>{{creditsLabel}}</strong> {{creditsText}}
|
||||
</p>
|
||||
|
||||
<p class="chat-note">
|
||||
<strong>{{officialLabel}}</strong>
|
||||
<a href="{{officialUrl}}" target="_blank" rel="noopener">{{officialLinkText}}</a>
|
||||
</p>
|
||||
|
||||
<p class="chat-note">{{footer}}</p>
|
||||
</section>
|
||||
@@ -0,0 +1,9 @@
|
||||
<div class="dnc-dialog-form">
|
||||
<p>{{localize "DNC.Macro.MissionPack.DialogIntro"}}</p>
|
||||
<label>
|
||||
<span>{{localize "DNC.Macro.MissionPack.DialogActor"}}</span>
|
||||
<select name="actorId">
|
||||
{{selectOptions actorOptions selected=selectedActorId labelAttr="label" valueAttr="value" localize=false}}
|
||||
</select>
|
||||
</label>
|
||||
</div>
|
||||
Reference in New Issue
Block a user