Request overview page
The last page we’ll create for this prototype will be the overview page for the requests. I would like to start with a little warning here – the way we are going to create this page is not the way you should normally be exposing your data. By this, I mean that we’ll be publicly displaying data on a page without any form of authentication. This could be the case in certain use cases, but always be very careful when exposing your data to a public and open page. This is because you will be exposing a complete model to that page, not just the properties you will be showing on the page, so anyone smart enough can query the rest of the properties as well. The other models in your data model should be fine – they all have their own permissions, so you can only expose one specific model. But I just want to make you aware of this and that Betty Blocks has a lot of safety features to make sure you don’t do this by accident, as you will...