diff --git a/ihatemoney/templates/list_bills.html b/ihatemoney/templates/list_bills.html
index 749c9070..79e25262 100644
--- a/ihatemoney/templates/list_bills.html
+++ b/ihatemoney/templates/list_bills.html
@@ -11,6 +11,11 @@
{% block js %}
{% if add_bill %} $('#new-bill > a').click(); {% endif %}
+ // focus on first field when adding a bill
+ $("#bill-form").on('shown.bs.modal', function(){
+ $(this).find('#what').focus();
+ });
+
// ask for confirmation before removing an user
$('.action.delete').each(function(){
var link = $(this).find('button');
@@ -101,7 +106,7 @@
{% endif %}
-
+
{{ static_include("images/plus.svg") | safe }}
{{ _("Add a new bill") }}