In our projects table we have every version of a project. Is it possible to show only those projects where max(version_id) in the admin interface?
Thanks! :) Eric
In our projects table we have every version of a project. Is it possible to show only those projects where max(version_id) in the admin interface?
Thanks! :) Eric
You mean like this?
SELECT Project, MAX(version_id) FROM <ProjectsTable> GROUP BY Project
you can use django views for this .In ur vies u can wirte any query which u need and render that on a template using a dictionary.