towerops/lib/towerops_web/live/help_live/index.html.heex

17 lines
453 B
Text

<%= if @is_authenticated do %>
<Layouts.authenticated
flash={@flash}
current_scope={@current_scope}
current_organization={@current_organization}
active_page="help"
timezone={@timezone}
>
<.help_content active_section={@active_section} />
</Layouts.authenticated>
<% else %>
<Layouts.app flash={@flash}>
<div class="py-8">
<.help_content active_section={@active_section} />
</div>
</Layouts.app>
<% end %>