Data-type aware filtering options for easily searching and finding records.
AppKit is a framework built, ontop of rails, to generate data flow applications quickly and easily. It abstracts common code to a simple DSL, Eliminating the need to write controllers, views, or tests.
Data-type aware filtering options for easily searching and finding records.
Edit, update, create, view, and search for data and records.
Authentication and user management automatically integrated.
Easily override existing functionality or build new functionality.
Get apps up and running in minutes with only a few lines of code.
AppKit.register Invoice do
show_in_navigation true
icon 'list'
field :invoice_number, editable: false
field :customer_id
field :invoice_total, editable: false, :formatter => :currency
field :invoice_date, :formatter => :date
field :paid, show_in_table: false
field :published, show_in_table: false
end
Record auditing allows you to track changes to data and see who made them.
Enable history tracking for any model and AppKit's interface will automaitcally allow you to see any changes to that record and view it as it was at that time. Each iteration of the record is independently stored for auditing purposes.
Activity tracking is enabled for all history tracked resources. You can easily see the activity of any user to audit what they changed and when.