1
0
Fork 0
mirror of https://github.com/nishiki/manage-password.git synced 2024-11-23 13:57:52 +00:00
mpw/templates/update_form.erb

18 lines
1,013 B
Text
Raw Normal View History

2016-08-09 20:06:47 +00:00
---
2016-08-20 08:03:12 +00:00
# <%= I18n.t('form.update_item.host') %>
host: <% if options[:host] %><%= options[:host] %><% else %><%= item.host %><% end %>
2016-08-20 08:03:12 +00:00
# <%= I18n.t('form.update_item.login') %>
user: <% if options[:user] %><%= options[:user] %><% else %><%= item.user %><% end %><% unless password %>
2016-08-20 08:03:12 +00:00
# <%= I18n.t('form.update_item.password') %>
2017-02-26 22:12:49 +00:00
password: <% end %>
2016-10-17 18:48:20 +00:00
# <%= I18n.t('form.update_item.group') %>
group: <% if options[:group] %><%= options[:group] %><% else %><%= item.group %><% end %>
2016-10-17 18:48:20 +00:00
# <%= I18n.t('form.update_item.protocol') %>
protocol: <% if options[:protocol] %><%= options[:protocol] %><% else %><%= item.protocol %><% end %>
2016-08-20 08:03:12 +00:00
# <%= I18n.t('form.update_item.port') %>
port: <% if options[:port] %><%= options[:port] %><% else %><%= item.port %><% end %>
2016-10-17 18:48:20 +00:00
# <%= I18n.t('form.update_item.otp_key') %>
otp_key: <% if options[:otp_key] %><%= options[:otp_key] %><% end %>
2016-08-20 08:03:12 +00:00
# <%= I18n.t('form.update_item.comment') %>
comment: <% if options[:comment] %><%= options[:comment] %><% else %><%= item.comment %><% end %>