forked from AUTOMATIC1111/stable-diffusion-webui
-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
template console log and startup profile
- Loading branch information
Showing
4 changed files
with
296 additions
and
289 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
52 changes: 39 additions & 13 deletions
52
extensions-builtin/anapnoe-sd-uiux/html/templates/template-console-log.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,44 @@ | ||
<div id="layout-console-log" class="layout"> | ||
<div class="layout-header"> | ||
</div> | ||
|
||
<div class="layout-content"> | ||
<div id="container-console-log"> | ||
</div> | ||
</div> | ||
<div class="layout-footer"> | ||
<div class="flexbox flex-end padding"> | ||
|
||
<button title="Startup profile" class="ae-button" | ||
onclick="popup_trigger.click(); testpopup(); showProfile('./internal/profile-startup'); return false;"> | ||
<div class="mask-icon icon-profile"> | ||
<div class="xtabs flexbox col"> | ||
|
||
<div id="logger_tabitem" class="xtabs-item no-padding"> | ||
<div id="container-console-log"> | ||
</div> | ||
</button> | ||
</div> | ||
|
||
<div id="profile_tabitem" class="xtabs-item no-padding"> | ||
<div data-parent-selector=".global-popup" | ||
data-selector="table.popup-table" | ||
class="portal dynamic"> | ||
</div> | ||
</div> | ||
|
||
</div> | ||
|
||
<div class="layout-footer"> | ||
|
||
<div class="flexbox padding"> | ||
|
||
<button title="Console Log" id="logger_nav" active="true" | ||
tabItemId="#logger_tabitem" tabGroup="console_group" | ||
class="xtabs-tab"> | ||
<div class="mask-icon icon-terminal"> | ||
</div> | ||
<span>Console Log</span> | ||
</button> | ||
|
||
<button id="profile_nav" title="Startup profile" class="xtabs-tab" | ||
tabItemId="#profile_tabitem" tabGroup="console_group" | ||
onclick="showProfile('./internal/profile-startup'); return false;"> | ||
<div class="mask-icon icon-profile"> | ||
</div> | ||
<span>Startup profile</span> | ||
</button> | ||
|
||
</div> | ||
|
||
</div> | ||
</div> | ||
</div> | ||
</div> |
Oops, something went wrong.