hyaenidae/server/templates/profiles/report_success.rs.html
2021-01-24 15:30:02 -06:00

20 lines
677 B
HTML

@use crate::extensions::ProfileExt;
@use crate::profiles::ReportView;
@use crate::nav::NavState;
@use crate::templates::layouts::home;
@use hyaenidae_toolkit::{templates::button_group, Button};
@use hyaenidae_toolkit::{templates::{card, card_title, card_body}, Card};
@(view: &ReportView, nav_state: &NavState)
@:home("Profile Reported", &format!("Reported {}", view.profile.name()), nav_state, {}, {
@:card(&Card::full_width().dark(nav_state.dark()), {
@:card_title({ Profile Reported })
@:card_body({
@:button_group(&[
Button::secondary("Back to Profile").href(&view.profile.view_path()),
])
})
})
})