summaryrefslogtreecommitdiffstats
path: root/ui/static (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Switched off the gradient background in the table headerMatthew Lemon2024-02-151-1/+1
|
* If we want table stripes...Matthew Lemon2024-02-121-0/+5
|
* Adds gradient to table headerMatthew Lemon2024-02-121-1/+2
|
* More styling - reverted from gray backgroundMatthew Lemon2024-02-121-28/+36
| | | | | | | Have moved to white background and given the whole content a padding on the left and right. Have commented out the table width styling for now as it's now required but want to leave it in there for the forseeable as I'm sure I will come back to it.
* Introduces much better styling of the operations tableMatthew Lemon2024-02-121-3/+40
|
* Removes the bullet from a listMatthew Lemon2024-02-121-0/+6
| | | | | This makes things much neater when the list is rendered inside a table cell.
* Some formatting for ESes in Ops tableMatthew Lemon2024-02-121-1/+7
| | | | | Added another dummy ES to Operation 1 in test data so I can test the listing inside the table - it still does not look correct though.
* Changes table header text to normal font weight.Matthew Lemon2024-02-121-0/+1
|
* An Operations list page now renders data in tableMatthew Lemon2024-02-121-1/+0
| | | | | | | | | The data is fetched from the database and uses html/template to render the rows in a list. A critical bug was not including the dot in {{ template "main" . }} in the base template. THIS MEANT THAT NO DATA PASSED TO ExecuteTemplate function rendered and took a long time to figure out.
* Further tinkering with CSSMatthew Lemon2024-02-111-0/+6
|
* Started mocking out home page in HTML and CSSMatthew Lemon2024-02-111-0/+12
| | | | | | Adding initial styles; currently working on a big summary table for the front page, that is going to provide the main entry point to all the relevant business data.
* Adds small-font cssMatthew Lemon2024-02-112-2/+929
| | | | | | | | Basing CSS styles on the look and feel of cgit, this commit actually includes the cgit css file in the tree for reference. I don't want to get too carried away with CSS at this point but this is a start.
* wip: tweak to font sizeMatthew Lemon2024-02-111-3/+3
|
* Have added Insert handler for Organisation modelMatthew Lemon2024-02-101-39/+0
| | | | | | This is a straight forward wrapper around INSERT. Also added a clientError into a new helpers.go file.
* Created a /organisations/list routeMatthew Lemon2024-02-081-0/+46
There is also some basic CSS here. Also introduced a proper structured logger.