diff options
author | Matthew Lemon <y@yulqen.org> | 2023-12-18 20:27:25 +0000 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2023-12-18 20:27:25 +0000 |
commit | 9d4b92824d7b8d7d6ee2eafe3beed66d162e82f7 (patch) | |
tree | c03d1e119d9edb2e2ec63154138d69dadab2c365 | |
parent | a0d95d9a49bc09a46e7170f3fe64510881a939d0 (diff) |
Adds a comment to the view
I am thinking about how to render the table properly.
There are two concerns: the table, and populating it.
-rw-r--r-- | app/views/events/index.html.erb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/app/views/events/index.html.erb b/app/views/events/index.html.erb index 89c67bb..036e0db 100644 --- a/app/views/events/index.html.erb +++ b/app/views/events/index.html.erb @@ -104,6 +104,10 @@ table, isn't it? I'm hoping this text spans all the way across so I can see what </div> <div class="tab-pane fade" id="profile" role="tabpanel" aria-labelledby="profile-tab"> + <%# Two concerns: %> + <%# 1. draw a table given a month, year and array of orgs %> + <%# 2. populate that table with Events for each Organisation given the date %> + <%# 3. Move this into a partial %> <table> <col style="width: 7%"> <col style="width: 15%"> |