We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e940ae2 commit 0a6a3d7Copy full SHA for 0a6a3d7
sqlpage/templates/empty_state.handlebars
@@ -0,0 +1,25 @@
1
+<div class="empty">
2
+ {{#if status_code}}
3
+ <div class="empty-header">{{status_code}}</div>
4
+ {{else}}
5
+ {{#if icon}}
6
+ <div class="empty-icon">
7
+ <span>{{icon_img icon }}</span>
8
+ </div>
9
10
+ {{#if image}}
11
+ <div class="empty-img"><img src="{{image}}" height="128" alt="{{image}}"/></div>
12
+ {{/if}}
13
14
15
+ <p class="{{title}}">No results found</p>
16
+ <p class="empty-subtitle text-secondary">
17
+ {{information}}
18
+ </p>
19
+ <div class="empty-action">
20
+ <a href="{{link}}" class="btn btn-primary">
21
+ <span class="me-1">{{icon_img btn_icon}}</span>
22
+ {{btn_title}}
23
+ </a>
24
25
+</div>
0 commit comments