about summary refs log tree commit diff
path: root/app/views/machines
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/machines')
-rw-r--r--app/views/machines/_form.html.erb27
-rw-r--r--app/views/machines/_machine.html.erb12
-rw-r--r--app/views/machines/_machine.json.jbuilder4
-rw-r--r--app/views/machines/edit.html.erb10
-rw-r--r--app/views/machines/index.html.erb14
-rw-r--r--app/views/machines/index.json.jbuilder3
-rw-r--r--app/views/machines/new.html.erb9
-rw-r--r--app/views/machines/show.html.erb10
-rw-r--r--app/views/machines/show.json.jbuilder3
9 files changed, 92 insertions, 0 deletions
diff --git a/app/views/machines/_form.html.erb b/app/views/machines/_form.html.erb
new file mode 100644
index 0000000..0e59129
--- /dev/null
+++ b/app/views/machines/_form.html.erb
@@ -0,0 +1,27 @@
+<%= form_with(model: machine) do |form| %>
+  <% if machine.errors.any? %>
+    <div style="color: red">
+      <h2><%= pluralize(machine.errors.count, "error") %> prohibited this machine from being saved:</h2>
+
+      <ul>
+        <% machine.errors.each do |error| %>
+          <li><%= error.full_message %></li>
+        <% end %>
+      </ul>
+    </div>
+  <% end %>
+
+  <div>
+    <%= form.label :name, style: "display: block" %>
+    <%= form.text_field :name %>
+  </div>
+
+  <div>
+    <%= form.label :edition, style: "display: block" %>
+    <%= form.text_field :edition %>
+  </div>
+
+  <div>
+    <%= form.submit %>
+  </div>
+<% end %>
diff --git a/app/views/machines/_machine.html.erb b/app/views/machines/_machine.html.erb
new file mode 100644
index 0000000..edba53e
--- /dev/null
+++ b/app/views/machines/_machine.html.erb
@@ -0,0 +1,12 @@
+<div id="<%= dom_id machine %>">
+  <p>
+    <strong>Name:</strong>
+    <%= machine.name %>
+  </p>
+
+  <p>
+    <strong>Edition:</strong>
+    <%= machine.edition %>
+  </p>
+
+</div>
diff --git a/app/views/machines/_machine.json.jbuilder b/app/views/machines/_machine.json.jbuilder
new file mode 100644
index 0000000..ef51e42
--- /dev/null
+++ b/app/views/machines/_machine.json.jbuilder
@@ -0,0 +1,4 @@
+# frozen_string_literal: true
+
+json.extract! machine, :id, :name, :edition, :created_at, :updated_at
+json.url machine_url(machine, format: :json)
diff --git a/app/views/machines/edit.html.erb b/app/views/machines/edit.html.erb
new file mode 100644
index 0000000..a390477
--- /dev/null
+++ b/app/views/machines/edit.html.erb
@@ -0,0 +1,10 @@
+<h1>Editing machine</h1>
+
+<%= render "form", machine: @machine %>
+
+<br>
+
+<div>
+  <%= link_to "Show this machine", @machine %> |
+  <%= link_to "Back to machines", machines_path %>
+</div>
diff --git a/app/views/machines/index.html.erb b/app/views/machines/index.html.erb
new file mode 100644
index 0000000..b5e2c85
--- /dev/null
+++ b/app/views/machines/index.html.erb
@@ -0,0 +1,14 @@
+<p style="color: green"><%= notice %></p>
+
+<h1>Machines</h1>
+
+<div id="machines">
+  <% @machines.each do |machine| %>
+    <%= render machine %>
+    <p>
+      <%= link_to "Show this machine", machine %>
+    </p>
+  <% end %>
+</div>
+
+<%= link_to "New machine", new_machine_path %>
diff --git a/app/views/machines/index.json.jbuilder b/app/views/machines/index.json.jbuilder
new file mode 100644
index 0000000..9947db2
--- /dev/null
+++ b/app/views/machines/index.json.jbuilder
@@ -0,0 +1,3 @@
+# frozen_string_literal: true
+
+json.array! @machines, partial: 'machines/machine', as: :machine
diff --git a/app/views/machines/new.html.erb b/app/views/machines/new.html.erb
new file mode 100644
index 0000000..ae58280
--- /dev/null
+++ b/app/views/machines/new.html.erb
@@ -0,0 +1,9 @@
+<h1>New machine</h1>
+
+<%= render "form", machine: @machine %>
+
+<br>
+
+<div>
+  <%= link_to "Back to machines", machines_path %>
+</div>
diff --git a/app/views/machines/show.html.erb b/app/views/machines/show.html.erb
new file mode 100644
index 0000000..1af79f9
--- /dev/null
+++ b/app/views/machines/show.html.erb
@@ -0,0 +1,10 @@
+<p style="color: green"><%= notice %></p>
+
+<%= render @machine %>
+
+<div>
+  <%= link_to "Edit this machine", edit_machine_path(@machine) %> |
+  <%= link_to "Back to machines", machines_path %>
+
+  <%= button_to "Destroy this machine", @machine, method: :delete %>
+</div>
diff --git a/app/views/machines/show.json.jbuilder b/app/views/machines/show.json.jbuilder
new file mode 100644
index 0000000..21b2852
--- /dev/null
+++ b/app/views/machines/show.json.jbuilder
@@ -0,0 +1,3 @@
+# frozen_string_literal: true
+
+json.partial! 'machines/machine', machine: @machine