diff --git a/lib/microwaveprop_web/live/contact_live/index.ex b/lib/microwaveprop_web/live/contact_live/index.ex index e88c7838..ffabd4fc 100644 --- a/lib/microwaveprop_web/live/contact_live/index.ex +++ b/lib/microwaveprop_web/live/contact_live/index.ex @@ -113,12 +113,13 @@ defmodule MicrowavepropWeb.ContactLive.Index do Distance (km) Submitted Timestamp + Added <%= for {primary, reciprocals} <- @grouped_contacts do %> - + {primary.distance_km} {if primary.user_submitted, do: "Yes", else: "—"} {Calendar.strftime(primary.qso_timestamp, "%Y-%m-%d %H:%M")} + {Calendar.strftime(primary.inserted_at, "%Y-%m-%d %H:%M")} <%= for recip <- reciprocals do %> {recip.distance_km} {if recip.user_submitted, do: "Yes", else: "—"} {Calendar.strftime(recip.qso_timestamp, "%Y-%m-%d %H:%M")} + {Calendar.strftime(recip.inserted_at, "%Y-%m-%d %H:%M")} <% end %> <% end %>