@use rphotos::models::{Photo, Place}; @use templates::page_base; @(user: Option, photos: Vec, place: Place) @:page_base(&format!("Photos from {}", place.place_name), vec![], user, {
@for p in photos {

}
})