added urls
This commit is contained in:
@@ -104,10 +104,10 @@ export default function HomeCom() {
|
||||
Subscription
|
||||
</th>
|
||||
<th scope="col" className="px-2">
|
||||
Status
|
||||
URL
|
||||
</th>
|
||||
<th scope="col" className="px-2">
|
||||
Activity
|
||||
Status
|
||||
</th>
|
||||
<th scope="col" className="px-2 text-right">
|
||||
Action
|
||||
@@ -138,17 +138,15 @@ export default function HomeCom() {
|
||||
<div className="text-base font-semibold"><a
|
||||
href={`https://${item?.internal_url}`} target='_blank'
|
||||
rel="noreferrer">{item?.internal_url}</a></div>
|
||||
<div className="font-normal text-gray-500">{item?.status}</div>
|
||||
<div className="font-normal text-gray-500">
|
||||
<a href={`http://${item?.primary_server}:${item?.provision_port}`} target='_blank'
|
||||
rel="noreferrer">
|
||||
{item?.primary_server}:{item?.provision_port} </a> </div>
|
||||
</div>
|
||||
</td>
|
||||
<td className="px-2">
|
||||
<div className="text-left">
|
||||
<div className="font-normal text-gray-500">50%</div>
|
||||
<div
|
||||
className="relative h-[6px] w-full bg-white-body dark:bg-black-body rounded-full overflow-hidden">
|
||||
<div
|
||||
className={`absolute left-0 h-full w-1/2 bg-emerald-600`}></div>
|
||||
</div>
|
||||
<div className="font-normal text-gray-500">{item?.status}</div>
|
||||
</div>
|
||||
</td>
|
||||
<td className="px-2 text-right">
|
||||
@@ -156,7 +154,7 @@ export default function HomeCom() {
|
||||
<div
|
||||
className='p-2 flex justify-center items-center text-slate-500 bg-white-body dark:text-white-body dark:bg-black-body rounded-md'>
|
||||
<Link to={`/subscription-view/${item?.uid}`}
|
||||
state={{subscriptionUID: item?.uid}}
|
||||
state={{subscriptionUID: item?.uid}}
|
||||
>
|
||||
<Icons name='eye'/>
|
||||
</Link>
|
||||
|
||||
@@ -127,16 +127,17 @@ export default function SubscriptionsCom() {
|
||||
<div
|
||||
className="text-base font-semibold">
|
||||
{item?.product_id}
|
||||
<br/> <Link
|
||||
to={`http://${item?.primary_server}:${item?.provision_port}`}>{item?.primary_server}:{item?.provision_port}</Link>
|
||||
<br/>
|
||||
<a href={`http://${item?.primary_server}:${item?.provision_port}`} target='_blank'
|
||||
rel="noreferrer">{item?.primary_server}:{item?.provision_port}</a>
|
||||
</div>
|
||||
</div>
|
||||
</td>
|
||||
<td className="px-2">
|
||||
<div className="text-left">
|
||||
<div className="text-base">
|
||||
<span>Int :</span> {item?.internal_url}<br/>
|
||||
<span>Ext :</span> {item?.external_url}<br/>
|
||||
<span>Int :</span><a href={`https://${item?.internal_url}`} target='_blank' rel="noreferrer"> {item?.internal_url}</a> <br/>
|
||||
<span>Ext :</span><a href={`https://${item?.external_url}`} target='_blank' rel="noreferrer"> {item?.external_url}</a> <br/>
|
||||
{item?.subscription_uid}</div>
|
||||
</div>
|
||||
</td>
|
||||
|
||||
Reference in New Issue
Block a user