# Anyway to make Forms in Discourse - One Category?

**URL:** https://meta.discourse.org/t/anyway-to-make-forms-in-discourse-one-category/205223
**Category:** Feature
**Tags:** completed
**Created:** [October 5, 2021, 3:44am UTC](https://meta.discourse.org/t/anyway-to-make-forms-in-discourse-one-category/205223 "2021-10-05T03:44:37Z")
**Posts on this page:** 1
**Showing post:** 2

<div class="post-metadata">

### Author: ![Simsnet](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/simsnet/32/72855_2.png) [@Simsnet](https://meta.discourse.org/u/Simsnet)
#### Post date: [October 5, 2021, 4:07am UTC](https://meta.discourse.org/t/anyway-to-make-forms-in-discourse-one-category/205223/2 "2021-10-05T04:07:40Z")

</div>

A search through #plugins didn’t show many results for forms directly.

In your category settings, you can create “Topic Templates” which will autofill new posts made in that category with pre-determined text. A good example of this is to draft a topic in #Support and watch text appear in the box.

You might could create the form in that template field, then have form responses be made under that specific category, to which users can fill in the blanks and submit.

The only issue with this is that responses will be public. You can unlist posts, which will make them only viewable to the creator, admins, and anyone with the link. I did a quick search and @theblazehen was able to make a cron job that automatically unlists posts in a specific category:

> [@Automatically unlisting a topic after X days](https://meta.discourse.org/t/automatically-unlisting-a-topic-after-x-days/168673/6):
>
> ```plaintext
> run:
> - exec: echo '* * * * * postgres /usr/bin/psql discourse -c "update topics set visible = FALSE where category_id = 19 and closed = TRUE;"' >> /etc/crontab
> 
> ```

You could remove the `and closed = TRUE` part to make it unlist all posts in the category. Make sure to change the category ID as yours won’t be 19.

* * *

Someone probably has a better suggestion, or even a full-on plugin for this, but I can’t think of any other suggestions that aren’t external.

---

_[View the full topic](https://meta.discourse.org/t/anyway-to-make-forms-in-discourse-one-category/205223)._
