diff options
Diffstat (limited to 'views/eventgroup.handlebars')
| -rwxr-xr-x | views/eventgroup.handlebars | 8 | 
1 files changed, 7 insertions, 1 deletions
diff --git a/views/eventgroup.handlebars b/views/eventgroup.handlebars index 6dcf555..5fcc6c2 100755 --- a/views/eventgroup.handlebars +++ b/views/eventgroup.handlebars @@ -1,4 +1,9 @@  <main class="event"> +{{#if editingEnabled}} +<div class="event__editing-banner"> +    {{ t "views.event.currentlyediting" }} +</div> +{{/if}}  {{#if eventGroupHasCoverImage}}    <div class="event-header-image" id="eventImageContainer" style="background-image: url(/events/{{eventGroupData.image}});"></div>  {{else}} @@ -47,8 +52,9 @@          {{/if}}          <li>            <span class="fa-li"> -            <i class="fas fa-share-square"></i> +            <i class="fas fa-users"></i>            </span> +          <span class="text-muted">{{t "views.event.publiclink" }}:</span>            <a href="https://{{domain}}/group/{{eventGroupData.id}}">https://{{domain}}/group/{{eventGroupData.id}}</a>            <button type="button" id="copyEventLink" class="eventInformationAction button button--outline-secondary button--sm" data-clipboard-text="https://{{domain}}/group/{{eventGroupData.id}}">              <i class="fas fa-copy"></i> {{t "common.copy" }}  | 
