hyaenidae/server/templates/profiles/report.rs.html
asonix 934ddd76ff Server: Update to latest Toolkit & Profile apis
Reorganize files a bit
Add a Pagination trait to guide with paging in the future
Add extension traits for Profile, Comment, and Submission
Async-ify more things, but not all things
2021-01-21 23:47:47 -06:00

36 lines
1.4 KiB
HTML

@use crate::extensions::ProfileExt;
@use crate::templates::button_js;
@use crate::{templates::layouts::home, nav::NavState, profiles::ReportView};
@use hyaenidae_toolkit::{templates::button_group, Button};
@use hyaenidae_toolkit::{templates::{card, card_body, card_title}, Card};
@use hyaenidae_toolkit::templates::profile;
@use hyaenidae_toolkit::templates::text_input;
@(rview: &ReportView, nav_state: &NavState)
@:home("Report Profile", rview.profile.description().unwrap_or(&format!("Report {}'s profile on Hyaenidae", rview.profile.name())), nav_state, {
@:button_js()
}, {
@:card(&Card::full_width().dark(nav_state.dark()), {
@:profile(&rview.profile().heading().dark(nav_state.dark()))
})
@:card(&Card::full_width().dark(nav_state.dark()), {
<form method="POST" action="@rview.profile.report_path()">
@:card_title({ Report Profile })
@:card_body({
<p>
Please include any relevant information for moderators to act on this report.
</p>
@:text_input(&rview.input)
})
@:card_body({
@:button_group(&[
Button::primary("Report").dark(nav_state.dark()),
Button::secondary("Back to Profile").href(&rview.profile.view_path()).dark(nav_state.dark()),
])
})
</form>
})
})