1
0
Fork 0
This repository has been archived on 2023-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
lpr-partynest/app/views/staffs/x509_certificates/new.html.erb

18 lines
455 B
Plaintext

<div class="container">
<%= nav_breadcrumb(
[translate(:staff_services), staff_root_path],
[X509Certificate.model_name.human(count: 0), staff_x509_certificates_path],
translate(:create),
) %>
<%= simple_form_for [:staff, @x509_certificate_form] do |f| %>
<%= f.error_notification %>
<%= f.input :distinguished_name %>
<%= f.input :not_before %>
<%= f.input :not_after %>
<%= f.button :submit %>
<% end %>
</div>