diff --git a/src/routes/comments.rs b/src/routes/comments.rs index 232b4dbe..ee5112bb 100644 --- a/src/routes/comments.rs +++ b/src/routes/comments.rs @@ -15,7 +15,7 @@ use plume_models::{ }; use inbox::Inbox; -#[derive(FromForm)] +#[derive(FromForm, Debug)] struct NewCommentForm { pub responding_to: Option, pub content: String @@ -26,6 +26,7 @@ fn create(blog_name: String, slug: String, data: LenientForm, us let blog = Blog::find_by_fqn(&*conn, blog_name.clone()).unwrap(); let post = Post::find_by_slug(&*conn, slug.clone(), blog.id).unwrap(); let form = data.get(); + println!("form: {:?}", form); let (new_comment, id) = NewComment::build() .content(form.content.clone()) diff --git a/templates/posts/details.html.tera b/templates/posts/details.html.tera index 5c3d45c3..4cb19562 100644 --- a/templates/posts/details.html.tera +++ b/templates/posts/details.html.tera @@ -64,7 +64,7 @@
{% if previous %} - + {% endif %} {# Ugly, but we don't have the choice if we don't want weird paddings #}