mirror of
https://github.com/DeviceFarmer/stf.git
synced 2026-04-20 12:55:26 +02:00
Adding device information.
This commit is contained in:
@@ -48,12 +48,12 @@ module.exports = angular.module('stf.device-status', [])
|
|||||||
.filter('displayDensity', function (gettext) {
|
.filter('displayDensity', function (gettext) {
|
||||||
return function (text) {
|
return function (text) {
|
||||||
return {
|
return {
|
||||||
'0.5': 'LDPI (120 dpi)',
|
'0.5': 'LDPI', // (120 dpi)
|
||||||
'1': 'MDPI (160 dpi)',
|
'1': 'MDPI', // (160 dpi)
|
||||||
'1.5': 'HDPI (240 dpi)',
|
'1.5': 'HDPI', // (240 dpi)
|
||||||
'2': 'XHDPI (320 dpi)',
|
'2': 'XHDPI', // (320 dpi)
|
||||||
'3': 'XXHDPI (480 dpi)',
|
'3': 'XXHDPI', // (480 dpi)
|
||||||
'4': 'XXXHDPI (640 dpi)'
|
'4': 'XXXHDPI' // (640 dpi)
|
||||||
}[text] || text
|
}[text] || text
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -13,10 +13,12 @@
|
|||||||
.stf-info .table-infocard tbody > tr > td:first-child {
|
.stf-info .table-infocard tbody > tr > td:first-child {
|
||||||
text-align: right;
|
text-align: right;
|
||||||
margin-right: 20px;
|
margin-right: 20px;
|
||||||
|
/*color: #111111;*/
|
||||||
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
.stf-info .table-infocard tbody > tr > td:last-child {
|
.stf-info .table-infocard tbody > tr > td:last-child {
|
||||||
font-weight: bold;
|
/*color: #555;*/
|
||||||
}
|
}
|
||||||
|
|
||||||
.stf-info .progress {
|
.stf-info .progress {
|
||||||
|
|||||||
@@ -100,7 +100,7 @@
|
|||||||
table.table.table-condensed.table-hover.table-infocard
|
table.table.table-condensed.table-hover.table-infocard
|
||||||
tbody
|
tbody
|
||||||
tr
|
tr
|
||||||
td(translate) Operator
|
td(translate) Carrier
|
||||||
td {{device.operator}}
|
td {{device.operator}}
|
||||||
tr
|
tr
|
||||||
td(translate) Network
|
td(translate) Network
|
||||||
@@ -108,12 +108,14 @@
|
|||||||
tr
|
tr
|
||||||
td(translate) Number
|
td(translate) Number
|
||||||
td {{device.phone.phoneNumber}}
|
td {{device.phone.phoneNumber}}
|
||||||
tr
|
|
||||||
td(translate) ICCID
|
|
||||||
td {{device.phone.iccid}}
|
|
||||||
tr
|
tr
|
||||||
td(translate) IMEI
|
td(translate) IMEI
|
||||||
td {{device.phone.imei}}
|
td {{device.phone.imei}}
|
||||||
|
tr
|
||||||
|
td(translate) ICCID
|
||||||
|
td
|
||||||
|
small {{device.phone.iccid}}
|
||||||
|
|
||||||
|
|
||||||
.col-md-4
|
.col-md-4
|
||||||
.widget-container.fluid-height
|
.widget-container.fluid-height
|
||||||
@@ -142,7 +144,7 @@
|
|||||||
.col-md-4
|
.col-md-4
|
||||||
.widget-container.fluid-height
|
.widget-container.fluid-height
|
||||||
.heading
|
.heading
|
||||||
i.fa.fa-phone
|
i.fa.fa-mobile
|
||||||
span(translate) Platform
|
span(translate) Platform
|
||||||
.widget-content.padded
|
.widget-content.padded
|
||||||
table.table.table-condensed.table-hover.table-infocard
|
table.table.table-condensed.table-hover.table-infocard
|
||||||
|
|||||||
Reference in New Issue
Block a user