mirror of
https://github.com/lxsang/antos-frontend.git
synced 2024-11-16 09:48:20 +01:00
11aed2642b
All checks were successful
gitea-sync/antos/pipeline/head This commit looks good
- Rename Syslog to SystemReport - All services previously on SystemReport now moved to the dedicated SystemServices Packages - Rework on a more versatile notification GUI and API - Applications now can display a local toast message instead of pushing a global notification message
21 lines
1.0 KiB
HTML
21 lines
1.0 KiB
HTML
<afx-app-window data-id="SystemReport" width='600' height='450' apptitle = "__(System error log)" >
|
|
<afx-hbox>
|
|
<afx-list-view data-id = "loglist" data-width="200"> </afx-list-view>
|
|
<afx-resizer data-width = "2" ></afx-resizer>
|
|
<afx-vbox>
|
|
<div data-id = "container">
|
|
<pre><code data-id="logdetail"></code></pre>
|
|
</div>
|
|
<div data-height="10" ></div>
|
|
<afx-hbox style="text-align:right;" data-height = "35">
|
|
<afx-button data-width ="content"
|
|
tooltip = "ct:__(Clear all logs)" iconclass = "fa fa-trash-o" data-id = "btclean" ></afx-button>
|
|
<input type = "text" data-id = "txturi" ></input>
|
|
<afx-button data-width ="content" text = "__(Report)"
|
|
iconclass = "fa fa-bug" data-id = "btnreport" ></afx-button>
|
|
<div data-width="10" ></div>
|
|
</afx-hbox>
|
|
<div data-height="10" ></div>
|
|
</afx-vbox>
|
|
</afx-hbox>
|
|
</afx-app-window> |