hyaenidae/server/templates/profiles/report_success.rs.html
asonix f350d718ac Add Profile and Submission report logic
Implement Follow and Block logic
2021-01-14 20:42:30 -06:00

18 lines
663 B
HTML

@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()).dark(nav_state.dark()),
])
})
})
})