diff options
author | azul <azul@riseup.net> | 2017-10-21 08:06:26 +0000 |
---|---|---|
committer | azul <azul@riseup.net> | 2017-10-21 08:06:26 +0000 |
commit | 92c5e35ea50a9d64f89d56454eff3e3103c17dc2 (patch) | |
tree | b30e6372edca16a2fb15696bbe6a497468aa8887 /app/views | |
parent | 3cf07b870cf5fa20714dadec38680876b0657108 (diff) | |
parent | 47df0b296b282d0fe554c3b596b366c5403c9588 (diff) |
Merge branch 'feat/8806-sort-invite-codes' into 'master'
feat: sort invite codes by last update
Closes #8806
See merge request leap/webapp!48
Diffstat (limited to 'app/views')
-rw-r--r-- | app/views/invite_codes/_invite_code.html.haml | 2 | ||||
-rw-r--r-- | app/views/invite_codes/index.html.haml | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/app/views/invite_codes/_invite_code.html.haml b/app/views/invite_codes/_invite_code.html.haml index a3c420d..a167432 100644 --- a/app/views/invite_codes/_invite_code.html.haml +++ b/app/views/invite_codes/_invite_code.html.haml @@ -1,5 +1,7 @@ %tr %td + = simple_date(invite_code.updated_at) + %td = simple_date(invite_code.created_at) %td %input.invite-code{:value => invite_code.invite_code} diff --git a/app/views/invite_codes/index.html.haml b/app/views/invite_codes/index.html.haml index 40fccdf..98c49c7 100644 --- a/app/views/invite_codes/index.html.haml +++ b/app/views/invite_codes/index.html.haml @@ -11,10 +11,10 @@ %td= f.text_field :max_uses, style: 'width: 4em' %td= f.submit t("helpers.submit.invites.create"), style: 'margin-bottom: 10px', class: 'btn btn-default' -= table @invites, %w(created code uses actions) += table @invites, %w(updated created code uses actions) -# select the text of the invite code when you click on it: :javascript $("input.invite-code").focus(function(){ this.select(); - });
\ No newline at end of file + }); |