Just a minor fix that I added. I am interning at a company using this tool. It is pretty powerful, but we wanted to be able to view the last-edited date in the table of addresses when viewing a subnet. I looked into it and it is really just a few very minor changes to the code
In app/admin/filter-fields line 22:
remove "$standard_fields['editDate']" from the unset list
This lets you check/uncheck EditDate as a "selected_field" on the IP-Filter page
Then, in app/subnets/addresses you just have to add Edit Date in the same format as the other fields are being added: if(in_array) {print " ..." }
in both header and address content print sections
I personally added the edit date after the custom fields because it seems like a field that you would want to see last on a table.
Anonymous