Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/MHSanaei/3x-ui.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMHSanaei <ho3ein.sanaei@gmail.com>2023-03-17 20:15:47 +0300
committerGitHub <noreply@github.com>2023-03-17 20:15:47 +0300
commitd46e0e69251d0ad60adc614505bcabff99529e1e (patch)
treec3daf12634999f190c6a098c0a741577d47321f2
parent3cd3cba8c60405b565e72a6c5a3843f7acecd63b (diff)
Delete inbounds_client_row.html
-rw-r--r--web/html/xui/inbounds_client_row.html36
1 files changed, 0 insertions, 36 deletions
diff --git a/web/html/xui/inbounds_client_row.html b/web/html/xui/inbounds_client_row.html
deleted file mode 100644
index 76f2a799..00000000
--- a/web/html/xui/inbounds_client_row.html
+++ /dev/null
@@ -1,36 +0,0 @@
-{{define "client_row"}}
-<template slot="actions" slot-scope="text, client, index">
- <a-tooltip>
- <template slot="title">{{ i18n "qrCode" }}</template>
- <a-icon style="font-size: 24px;" type="qrcode" v-if="record.hasLink()" @click="showQrcode(record,index);"></a-icon>
- </a-tooltip>
- <a-tooltip>
- <template slot="title">{{ i18n "info" }}</template>
- <a-icon style="font-size: 24px;" type="info-circle" @click="showInfo(record,index);"></a-icon>
- </a-tooltip>
- <a-tooltip>
- <template slot="title">{{ i18n "pages.inbounds.resetTraffic" }}</template>
- <a-icon style="font-size: 24px;" type="retweet" @click="resetClientTraffic(client,record,$event)" v-if="client.email != ''"></a-icon>
- </a-tooltip>
-</template>
-<template slot="client" slot-scope="text, client">
- [[ client.email ]]
- <a-tag v-if="!isClientEnabled(record, client.email)" color="red">{{ i18n "disabled" }}</a-tag>
-</template>
-<template slot="traffic" slot-scope="text, client">
- <a-tag color="blue">[[ sizeFormat(getUpStats(record, client.email)) ]] / [[ sizeFormat(getDownStats(record, client.email)) ]]</a-tag>
- <template v-if="client._totalGB > 0">
- <a-tag v-if="isTrafficExhausted(record, client.email)" color="red">[[client._totalGB]]GB</a-tag>
- <a-tag v-else color="cyan">[[client._totalGB]]GB</a-tag>
- </template>
- <a-tag v-else color="green">{{ i18n "indefinite" }}</a-tag>
-</template>
-<template slot="expiryTime" slot-scope="text, client, index">
- <template v-if="client._expiryTime > 0">
- <a-tag :color="isExpiry(record, index)? 'red' : 'blue'">
- [[ DateUtil.formatMillis(client._expiryTime) ]]
- </a-tag>
- </template>
- <a-tag v-else color="green">{{ i18n "indefinite" }}</a-tag>
-</template>
-{{end}}