Remove HTML views
This commit is contained in:
parent
1f93fe42c5
commit
db644c85be
@ -1,19 +0,0 @@
|
|||||||
<%# Copyright (C) 2024 Manuel Bustillo %>
|
|
||||||
|
|
||||||
<div id="<%= dom_id expense %>">
|
|
||||||
<p>
|
|
||||||
<strong>Name:</strong>
|
|
||||||
<%= expense.name %>
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<p>
|
|
||||||
<strong>Amount:</strong>
|
|
||||||
<%= expense.amount %>
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<p>
|
|
||||||
<strong>Pricing type:</strong>
|
|
||||||
<%= expense.pricing_type %>
|
|
||||||
</p>
|
|
||||||
|
|
||||||
</div>
|
|
@ -1,34 +0,0 @@
|
|||||||
<%# Copyright (C) 2024 Manuel Bustillo %>
|
|
||||||
|
|
||||||
<%= form_with(model: expense) do |form| %>
|
|
||||||
<% if expense.errors.any? %>
|
|
||||||
<div style="color: red">
|
|
||||||
<h2><%= pluralize(expense.errors.count, "error") %> prohibited this expense from being saved:</h2>
|
|
||||||
|
|
||||||
<ul>
|
|
||||||
<% expense.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 :amount, style: "display: block" %>
|
|
||||||
<%= form.text_field :amount %>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<%= form.label :pricing_type, style: "display: block" %>
|
|
||||||
<%= form.text_field :pricing_type %>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<%= form.submit %>
|
|
||||||
</div>
|
|
||||||
<% end %>
|
|
@ -1,12 +0,0 @@
|
|||||||
<%# Copyright (C) 2024 Manuel Bustillo %>
|
|
||||||
|
|
||||||
<h1>Editing expense</h1>
|
|
||||||
|
|
||||||
<%= render "form", expense: @expense %>
|
|
||||||
|
|
||||||
<br>
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<%= link_to "Show this expense", @expense %> |
|
|
||||||
<%= link_to "Back to expenses", expenses_path %>
|
|
||||||
</div>
|
|
@ -1,30 +0,0 @@
|
|||||||
<%# Copyright (C) 2024 Manuel Bustillo %>
|
|
||||||
|
|
||||||
<p style="color: green"><%= notice %></p>
|
|
||||||
|
|
||||||
<h1>Expenses</h1>
|
|
||||||
|
|
||||||
<div id="expenses">
|
|
||||||
<table>
|
|
||||||
<tr>
|
|
||||||
<th>Name</th>
|
|
||||||
<th>Amount</th>
|
|
||||||
<th colspan="2"></th>
|
|
||||||
</tr>
|
|
||||||
<% @expenses.each do |expense| %>
|
|
||||||
<tr>
|
|
||||||
<td><%= expense.name %></td>
|
|
||||||
<td><%= expense.amount.to_currency %></td>
|
|
||||||
<td><%= link_to "Show", expense %></td>
|
|
||||||
<td><%= link_to "Edit", edit_expense_path(expense) %></td>
|
|
||||||
</tr>
|
|
||||||
<% end %>
|
|
||||||
<tr>
|
|
||||||
<td>Total</td>
|
|
||||||
<td><%= @expenses.sum(&:amount).to_currency %></td>
|
|
||||||
<td colspan="2"></td>
|
|
||||||
</tr>
|
|
||||||
</table>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<%= link_to "New expense", new_expense_path %>
|
|
@ -1,11 +0,0 @@
|
|||||||
<%# Copyright (C) 2024 Manuel Bustillo %>
|
|
||||||
|
|
||||||
<h1>New expense</h1>
|
|
||||||
|
|
||||||
<%= render "form", expense: @expense %>
|
|
||||||
|
|
||||||
<br>
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<%= link_to "Back to expenses", expenses_path %>
|
|
||||||
</div>
|
|
@ -1,12 +0,0 @@
|
|||||||
<%# Copyright (C) 2024 Manuel Bustillo %>
|
|
||||||
|
|
||||||
<p style="color: green"><%= notice %></p>
|
|
||||||
|
|
||||||
<%= render @expense %>
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<%= link_to "Edit this expense", edit_expense_path(@expense) %> |
|
|
||||||
<%= link_to "Back to expenses", expenses_path %>
|
|
||||||
|
|
||||||
<%= button_to "Destroy this expense", @expense, method: :delete %>
|
|
||||||
</div>
|
|
@ -1,39 +0,0 @@
|
|||||||
<%# Copyright (C) 2024 Manuel Bustillo %>
|
|
||||||
|
|
||||||
<%= form_with(model: guest) do |form| %>
|
|
||||||
<% if guest.errors.any? %>
|
|
||||||
<div style="color: red">
|
|
||||||
<h2><%= pluralize(guest.errors.count, "error") %> prohibited this guest from being saved:</h2>
|
|
||||||
|
|
||||||
<ul>
|
|
||||||
<% guest.errors.each do |error| %>
|
|
||||||
<li><%= error.full_message %></li>
|
|
||||||
<% end %>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
<% end %>
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<%= form.label :first_name, style: "display: block" %>
|
|
||||||
<%= form.text_field :first_name %>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<%= form.label :last_name, style: "display: block" %>
|
|
||||||
<%= form.text_field :last_name %>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<%= form.label :email, style: "display: block" %>
|
|
||||||
<%= form.text_field :email %>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<%= form.label :phone, style: "display: block" %>
|
|
||||||
<%= form.text_field :phone %>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<%= form.submit %>
|
|
||||||
</div>
|
|
||||||
<% end %>
|
|
@ -1,24 +0,0 @@
|
|||||||
<%# Copyright (C) 2024 Manuel Bustillo %>
|
|
||||||
|
|
||||||
<div id="<%= dom_id guest %>">
|
|
||||||
<p>
|
|
||||||
<strong>First name:</strong>
|
|
||||||
<%= guest.first_name %>
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<p>
|
|
||||||
<strong>Last name:</strong>
|
|
||||||
<%= guest.last_name %>
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<p>
|
|
||||||
<strong>Email:</strong>
|
|
||||||
<%= guest.email %>
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<p>
|
|
||||||
<strong>Phone:</strong>
|
|
||||||
<%= guest.phone %>
|
|
||||||
</p>
|
|
||||||
|
|
||||||
</div>
|
|
@ -1,12 +0,0 @@
|
|||||||
<%# Copyright (C) 2024 Manuel Bustillo %>
|
|
||||||
|
|
||||||
<h1>Editing guest</h1>
|
|
||||||
|
|
||||||
<%= render "form", guest: @guest %>
|
|
||||||
|
|
||||||
<br>
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<%= link_to "Show this guest", @guest %> |
|
|
||||||
<%= link_to "Back to guests", guests_path %>
|
|
||||||
</div>
|
|
@ -1,39 +0,0 @@
|
|||||||
<%# Copyright (C) 2024 Manuel Bustillo %>
|
|
||||||
|
|
||||||
<p style="color: green"><%= notice %></p>
|
|
||||||
|
|
||||||
<h1>Guests</h1>
|
|
||||||
|
|
||||||
<div id="guests">
|
|
||||||
<table>
|
|
||||||
<tr>
|
|
||||||
<th>Row #</th>
|
|
||||||
<th>Name</th>
|
|
||||||
<th>Email</th>
|
|
||||||
<th>Phone</th>
|
|
||||||
<th>Affinity groups</th>
|
|
||||||
<th>Unbreakable bonds</th>
|
|
||||||
<th colspan="2"></th>
|
|
||||||
</tr>
|
|
||||||
<% @guests.each_with_index do |guest, i| %>
|
|
||||||
<tr>
|
|
||||||
<td><%= i + 1 %></td>
|
|
||||||
<td><%= guest.full_name %></td>
|
|
||||||
<td><%= guest.email %></td>
|
|
||||||
<td><%= guest.phone %></td>
|
|
||||||
<td><%= guest.affinity_groups.pluck(:name).join(", ") %></td>
|
|
||||||
<td><%= guest.unbreakable_bonds.pluck(:name).join(", ") %></td>
|
|
||||||
<td><%= link_to "Show", guest %></td>
|
|
||||||
<td><%= link_to "Edit", edit_guest_path(guest) %></td>
|
|
||||||
</tr>
|
|
||||||
<% end %>
|
|
||||||
</table>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<%= link_to "New guest", new_guest_path %>
|
|
||||||
|
|
||||||
<%= form_with url: import_guests_path, method: :post do |form| %>
|
|
||||||
<%= form.label :file %>
|
|
||||||
<%= form.file_field :file %>
|
|
||||||
<%= form.submit "Import" %>
|
|
||||||
<% end %>
|
|
@ -1,11 +0,0 @@
|
|||||||
<%# Copyright (C) 2024 Manuel Bustillo %>
|
|
||||||
|
|
||||||
<h1>New guest</h1>
|
|
||||||
|
|
||||||
<%= render "form", guest: @guest %>
|
|
||||||
|
|
||||||
<br>
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<%= link_to "Back to guests", guests_path %>
|
|
||||||
</div>
|
|
@ -1,12 +0,0 @@
|
|||||||
<%# Copyright (C) 2024 Manuel Bustillo %>
|
|
||||||
|
|
||||||
<p style="color: green"><%= notice %></p>
|
|
||||||
|
|
||||||
<%= render @guest %>
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<%= link_to "Edit this guest", edit_guest_path(@guest) %> |
|
|
||||||
<%= link_to "Back to guests", guests_path %>
|
|
||||||
|
|
||||||
<%= button_to "Destroy this guest", @guest, method: :delete %>
|
|
||||||
</div>
|
|
@ -1,18 +0,0 @@
|
|||||||
<%# Copyright (C) 2024 Manuel Bustillo %>
|
|
||||||
|
|
||||||
<!DOCTYPE html>
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<title>WeddingPlanner</title>
|
|
||||||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
|
||||||
<%= csrf_meta_tags %>
|
|
||||||
<%= csp_meta_tag %>
|
|
||||||
|
|
||||||
<%= stylesheet_link_tag "application", "data-turbo-track": "reload" %>
|
|
||||||
<%= javascript_importmap_tags %>
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body>
|
|
||||||
<%= yield %>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
@ -1,11 +0,0 @@
|
|||||||
<%# Copyright (C) 2024 Manuel Bustillo %>
|
|
||||||
|
|
||||||
<h1>Tables arrangements</h1>
|
|
||||||
|
|
||||||
<ol>
|
|
||||||
<% @tables_arrangements.each_with_index do |tables_arrangement, i| %>
|
|
||||||
<li>
|
|
||||||
<p><%= link_to "Arrangement ##{i+1}", tables_arrangement_path(tables_arrangement) %> Discomfort: <%= tables_arrangement.discomfort %></p>
|
|
||||||
</li>
|
|
||||||
<% end %>
|
|
||||||
</ol>
|
|
@ -1,18 +0,0 @@
|
|||||||
<%# Copyright (C) 2024 Manuel Bustillo %>
|
|
||||||
|
|
||||||
<h1>ID: <%= @tables_arrangement.id %></h1>
|
|
||||||
|
|
||||||
<p>Discomfort: <%= @tables_arrangement.discomfort %></p>
|
|
||||||
|
|
||||||
<h2>Seats</h2>
|
|
||||||
|
|
||||||
<% @seats.each do |table_number, seats| %>
|
|
||||||
|
|
||||||
<h3>Table <%= table_number %></h3>
|
|
||||||
|
|
||||||
<ul>
|
|
||||||
<% seats.each do |seat| %>
|
|
||||||
<li><%= seat.guest.full_name %> (<%= seat.guest.affinity_groups.pluck(:name).join(", ") %>)</li>
|
|
||||||
<% end %>
|
|
||||||
</ul>
|
|
||||||
<% end %>
|
|
Loading…
x
Reference in New Issue
Block a user