diff --git a/docs/customization.rst b/docs/customization.rst
index cfa2edd..f9591c5 100644
--- a/docs/customization.rst
+++ b/docs/customization.rst
@@ -108,3 +108,24 @@ If you want only the attribute's key to be rendered, set it to ``True``:
return ctx
This will simply add ``awesome`` as a key-only attribute.
+
+You can also pass an ``attrs`` dictionary to the ``{% formrow %}`` template tag,
+which will then subsequently be passed to the rendered widget.
+
+Pass this to your context
+
+.. code-block:: python
+
+ myfield_attrs = dict(placeholder="Some text")
+
+And use like this in your HTML
+
+.. code-block:: jinja
+
+ {% formrow form.myfield with attrs=myfield_attrs %}
+
+Which will output something like
+
+.. code-block:: jinja
+
+
diff --git a/floppyforms/templates/floppyforms/rows/li.html b/floppyforms/templates/floppyforms/rows/li.html
index 42ce4b3..6327c00 100644
--- a/floppyforms/templates/floppyforms/rows/li.html
+++ b/floppyforms/templates/floppyforms/rows/li.html
@@ -3,7 +3,7 @@
{% block field %}
{% block errors %}{% include "floppyforms/errors.html" with errors=field.errors %}{% endblock %}
{% block label %}{% if field|id %}{% endif %}{% endblock %}
- {% block widget %}{% formfield field %}{% endblock %}
+ {% block widget %}{% formfield field with attrs=attrs %}{% endblock %}
{% block help_text %}{% if help_text %}{{ help_text }}{% endif %}{% endblock %}
{% block hidden_fields %}{% for field in hidden_fields %}{{ field.as_hidden }}{% endfor %}{% endblock %}
{% endblock %}
diff --git a/floppyforms/templates/floppyforms/rows/p.html b/floppyforms/templates/floppyforms/rows/p.html
index 62f2dfe..20bade3 100644
--- a/floppyforms/templates/floppyforms/rows/p.html
+++ b/floppyforms/templates/floppyforms/rows/p.html
@@ -4,7 +4,7 @@
{% block errors %}{% include "floppyforms/errors.html" with errors=field.errors %}{% endblock %}
{% block label %}{% if field|id %}{% endif %}{% endblock %}
- {% block widget %}{% formfield field %}{% endblock %}
+ {% block widget %}{% formfield field with attrs=attrs %}{% endblock %}
{% block help_text %}{% if help_text %}{{ help_text }}{% endif %}{% endblock %}
{% block hidden_fields %}{% for field in hidden_fields %}{{ field.as_hidden }}{% endfor %}{% endblock %}