diff options
author | Matthew Lemon <lemon@matthewlemon.com> | 2020-10-08 12:04:44 +0100 |
---|---|---|
committer | Matthew Lemon <lemon@matthewlemon.com> | 2020-10-08 12:04:44 +0100 |
commit | 94a0a709513b556f36f900f23b4e38e78b60b645 (patch) | |
tree | 43dfeb16a6549efed1bca23d06220eb0c7fcb6c7 /ctrack/organisations | |
parent | 6c7a39102ed5f2362ca82f6e4d877c2b6ac76e03 (diff) |
trying a list-group-item within a table cell - looks quite nice
Diffstat (limited to 'ctrack/organisations')
-rw-r--r-- | ctrack/organisations/templates/organisations/organisation_detail.html | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/ctrack/organisations/templates/organisations/organisation_detail.html b/ctrack/organisations/templates/organisations/organisation_detail.html index 5cf96f1..b3775ab 100644 --- a/ctrack/organisations/templates/organisations/organisation_detail.html +++ b/ctrack/organisations/templates/organisations/organisation_detail.html @@ -188,7 +188,10 @@ </ul> </td> <td> - {{ caf.comments }} + <ul class="list-group"> + <li class="list-group-item"> + {{ caf.comments }}</li> + </ul> </td> </tr> {% endfor %} |