1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-15 10:05:58 +00:00

user details for user manager

This commit is contained in:
Andrew Dolgov
2005-11-18 13:02:38 +01:00
parent ab15e65ddc
commit 717f5e645b
4 changed files with 119 additions and 10 deletions

View File

@@ -848,7 +848,27 @@ function resetSelectedUserPass() {
}
function selectedUserDetails() {
var rows = getSelectedUsers();
if (rows.length == 0) {
notify("No users are selected.");
return;
}
if (rows.length > 1) {
notify("Please select one user.");
return;
}
var id = rows[0];
var w = window.open("backend.php?op=user-details&id=" + id,
"User Details",
"menubar=no,location=no,resizable=yes,scrollbars=yes,status=no");
}
function editSelectedFilter() {
var rows = getSelectedFilters();