1a789d3acb
* cfg edit 1 * jsonschema deps * feat: lp mig - first few steps * lp mig: default tasks * code comments * docs * lp-mig-progress * shared * comments and todos * fix: curio: rename lotus-provider to curio (#11645) * rename provider to curio * install gotext * fix lint errors, mod tidy * fix typo * fix API_INFO and add gotext to circleCI * add back gotext * add gotext after remerge * lp: channels doc * finish easy-migration TODOs * out generate * merging and more renames * avoid make-all * minor doc stuff * cu: make gen * make gen fix * make gen * tryfix * go mod tidy * minor ez migration fixes * ez setup - ui cleanups * better error message * guided setup colors * better path to saveconfigtolayer * loadconfigwithupgrades fix * readMiner oops * guided - homedir * err if miner is running * prompt error should exit * process already running, miner_id sectors in migration * dont prompt for language a second time * check miner stopped * unlock repo * render and sql oops * curio easyMig - some fixes * easyMigration runs successfully * lint * part 2 of last * message * merge addtl * fixing guided setup for myself * warn-on-no-post * EditorLoads * cleanups and styles * create info * fix tests * make gen * sector early bird * sectors v2 * sector termination v1 * terminate2 * mjs * minor things * flag bad sectors * fix errors * add dealweight and deals * change column width * ui looking better * cleanups * fix pipeline page * comments * curioweb: Add missing sector info file * curioweb: fix hapi root template --------- Co-authored-by: LexLuthr <88259624+LexLuthr@users.noreply.github.com> Co-authored-by: LexLuthr <lexluthr@protocol.ai> Co-authored-by: LexLuthr <lexluthr@curiostorage.org> Co-authored-by: Łukasz Magiera <magik6k@gmail.com>
98 lines
2.6 KiB
HTML
98 lines
2.6 KiB
HTML
<html>
|
|
<head>
|
|
<title>Lotus Provider PoRep Pipeline</title>
|
|
<script src="https://unpkg.com/htmx.org@1.9.5" integrity="sha384-xcuj3WpfgjlKF+FXhSQFQ0ZNr39ln+hwjN3npfM9VBnUskLolQAcN80McRIVOPuO" crossorigin="anonymous"></script>
|
|
<script type="module" src="/ux/curio-ux.mjs"></script>
|
|
<script type="module" src="/chain-connectivity.mjs"></script>
|
|
<link rel="stylesheet" href="/ux/main.css">
|
|
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack-subset.css'>
|
|
<style>
|
|
/* Path: curiosrc/web/hapi/web/pipeline_porep_sectors.gohtml */
|
|
.porep-pipeline-table,
|
|
.porep-state {
|
|
color: #d0d0d0;
|
|
}
|
|
|
|
.porep-pipeline-table td,
|
|
.porep-pipeline-table th {
|
|
border-left: none;
|
|
border-collapse: collapse;
|
|
}
|
|
|
|
.porep-pipeline-table tr:nth-child(odd) {
|
|
border-top: 6px solid #999999;
|
|
|
|
}
|
|
|
|
.porep-pipeline-table tr:first-child,
|
|
.porep-pipeline-table tr:first-child {
|
|
border-top: none;
|
|
}
|
|
|
|
.porep-state {
|
|
border-collapse: collapse;
|
|
}
|
|
|
|
.porep-state td,
|
|
.porep-state th {
|
|
border-left: 1px solid #f0f0f0;
|
|
border-right: 1px solid #f0f0f0;
|
|
|
|
padding: 1px 5px;
|
|
|
|
text-align: center;
|
|
font-size: 0.7em;
|
|
}
|
|
|
|
.porep-state tr {
|
|
border-top: 1px solid #f0f0f0;
|
|
}
|
|
|
|
.porep-state tr:first-child {
|
|
border-top: none;
|
|
}
|
|
|
|
.pipeline-active {
|
|
background-color: #303060;
|
|
}
|
|
|
|
.pipeline-success {
|
|
background-color: #306030;
|
|
}
|
|
|
|
.pipeline-failed {
|
|
background-color: #603030;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body style="visibility: hidden">
|
|
<curio-ux>
|
|
<div class="app-head">
|
|
<div class="head-left">
|
|
<h1>Lotus Provider PoRep Pipeline</h1>
|
|
</div>
|
|
</div>
|
|
<hr/>
|
|
<div class="page">
|
|
<div class="row">
|
|
<div class="row-md-auto" style="width: 50%">
|
|
<div class="info-block">
|
|
<h2>Sectors</h2>
|
|
<table class="table table-dark porep-pipeline-table">
|
|
<thead>
|
|
<tr>
|
|
<th>Sector ID</th>
|
|
<th>Create Time</th>
|
|
<th>State</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody hx-get="/hapi/pipeline-porep/sectors" hx-trigger="load,every 3s">
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
<div class="row-md-auto"></div>
|
|
</div>
|
|
</div></curio-ux>
|
|
</body>
|
|
</html> |