Hello.
I have a subset of users in a csv file. The task is to assign one HW to these students. Is there any other way than select the users manually?
I have access to the database via phpmyadmin, if neessary.
Thank you for suggestions.
for i in `cat ~/Downloads/export.csv | cut -f6 -d,`; do echo $i; done | sort | paste -sd "," | sed 's/"//g'
str=prompt("Enter logins, comma separated");
logins=str.split(",");
$.each(logins,function(index,login){$('input[value='+login+']').each(function() { $(this).prop( "checked", true ); }) })
3. Save the changes
Hope this helps to someone else in future.