This is a vague question about user experience and interaction design patterns (not programming) for CRUD web applications.
Let there be a few simple objects, for example. Student , Course and Lecturer with obvious relationships.
As I understand it, the CRUD application usually provides a screen for each object to view objects, update, delete and add a new one. The screen may also contain a search box.
The graphical interface of the application uses relationships to display information related to the entity (for example, courses for each student) and move from one object screen to another (for example, from the Student's course name on the Student screen to the Course description in the Course screen).
Does it make sense? Are there other graphical interfaces for CRUD applications? What example would you recommend to know?
source share