The source content for blog.juliobiason.me
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

53 lines
1.4 KiB

+++
title = "Condensed Sodium"
date = 2020-12-10
[taxonomies]
tags = ["projects", "personal", "client", "status", "web", "rust"]
+++
A Client Status web app.
* [Rocket](https://rocket.rs/)
* [Diesel](http://diesel.rs/)
* [TailwindCSS](https://tailwindcss.com/)
* Translatable.
* Contacts:
* Name
* Phone
* Email
* Company
* Clients are basically groups of contacts + interactions.
* Interaction can be marked as "Successful" or "Waiting".
* Files can be attached to interactions.
* Dashboard shows all clients with their statuses.
```
+----------------------------------+
| +-----------+ +----------------+ |
| | Client 1 | | Client 2 | |
| | No issues | | Await response | |
| +-----------+ +----------------+ |
+----------------------------------+
```
"Await response" is the text of the interaction.
```
+----------------------------------+
| Client 2 [ See Contacts ] |
| |
| New interaction: |
| [ ] |
| [ ] |
| [ ] |
| [ Await ] [ Success ] |
| |
| Previous interactions: |
| * DATE - Asked if this works ! |
| * DATE - Await response ? |
+----------------------------------+
```
"Previous interactions" goes from the oldest to the newest results.