paperless-ngx/src-ui/src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html

12 lines
876 B
HTML
Raw Normal View History

<ngb-alert type="primary" [dismissible]="false">
2022-09-21 21:44:15 -07:00
<!-- [dismissible]="isFinished(status)" (closed)="dismiss(status)" -->
2022-09-21 23:17:24 -07:00
<h4 class="alert-heading"><ng-container i18n>Paperless-ngx is running!</ng-container> 🎉</h4>
<p i18n>You're ready to start uploading documents! Explore the various features of this web app on your own, or start a quick tour using the button below.</p>
2022-12-03 02:04:30 -08:00
<p i18n>More detail on how to use and configure Paperless-ngx is always available in the <a href="https://docs.paperless-ngx.com" target="_blank">documentation</a>.</p>
2022-09-21 21:44:15 -07:00
<hr>
2022-09-21 23:17:24 -07:00
<div class="d-flex align-items-end">
<p class="lead fs-6 m-0"><em i18n>Thanks for being a part of the Paperless-ngx community!</em></p>
<button class="btn btn-primary ms-auto flex-shrink-0" (click)="tourService.start()"><ng-container i18n>Start the tour</ng-container> &rarr;</button>
2022-09-21 21:44:15 -07:00
</div>
</ngb-alert>