Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Ombi/commit/765bf7ba09690a83a3d21e41161941b9de430639
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
51 additions and
8 deletions
@ -4,7 +4,7 @@
< button type = "button" class = "btn btn-success-outline" [ routerLink ] = " [ ' / usermanagement / add ' ] " > Add User< / button >
<!-- Table -->
< table class = "table table-striped table-hover table-responsive table-condensed ">
< table class = "table table-striped table-hover table-responsive table-condensed table-usermanagement ">
< thead >
< tr >
< th >
@ -44,28 +44,28 @@
< / thead >
< tbody >
< tr * ngFor = "let u of users" >
< td >
< td class = "td-labelled" data-label = "Select:" >
< input type = "checkbox" [ ( ngModel ) ] = " u . checked " >
< / td >
< td >
< td class = "td-labelled" data-label = "Username:" >
{{u.userName}}
< / td >
< td >
< td class = "td-labelled" data-label = "Alias:" >
{{u.alias}}
< / td >
< td >
< td class = "td-labelled" data-label = "Email:" >
{{u.emailAddress}}
< / td >
< td >
< td class = "td-labelled" data-label = "Roles:" >
< div * ngFor = "let claim of u.claims" >
< span * ngIf = "claim.enabled" > {{claim.value}}< / span >
< / div >
< / td >
< td >
< td class = "td-labelled" data-label = "Last Logged In:" >
{{u.lastLoggedIn | date: 'short'}}
< / td >
< td >
< td class = "td-labelled" data-label = "User Type:" >
< span * ngIf = "u.userType === 1" > Local User< / span >
< span * ngIf = "u.userType === 2" > Plex User< / span >
< span * ngIf = "u.userType === 3" > Emby User< / span >
@ -858,4 +858,47 @@ a > h4:hover {
. card {
padding-top : 15 px ;
}
@media only screen and ( max-width : 768 px ) {
. table-usermanagement {
/* Force table to not be like tables anymore */
display : block ;
thead , tbody , th , td , tr {
display : block ;
}
/* Hide table headers (but not display: none;, for accessibility) */
thead tr {
position : absolute ;
top : - 9999 px ;
left : - 9999 px ;
}
td {
/* Behave like a "row" */
border : none ;
border-bottom : 1 px solid #eee ;
position : relative ;
padding-left : 50 % $i ;
min-height : 25 px ;
}
td : before {
/* Now like a table header */
position : absolute ;
/* Top/left values mimic padding */
top : 6 px ;
left : 6 px ;
width : 45 % ;
padding-right : 10 px ;
white-space : nowrap ;
}
/* Label the data */
. td-labelled : before {
content : attr ( data-label )
}
}
}