diff --git a/src/howto/views.rs b/src/howto/views.rs index 0fc9a4a..0974caf 100644 --- a/src/howto/views.rs +++ b/src/howto/views.rs @@ -13,5 +13,5 @@ pub async fn howtos(templates: State) -> impl IntoResponse } pub async fn answer_question(Form(question): Form) -> impl IntoResponse { - "There is your answer!".to_owned() + format!("You asked: {}, There is your answer!", question.question).to_owned() }