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.
56 lines
1.4 KiB
56 lines
1.4 KiB
4 years ago
|
+++
|
||
|
title = "Condensed Sodium"
|
||
|
date = 2020-12-10
|
||
|
|
||
|
[taxonomies]
|
||
|
tags = ["projetos", "pessoal", "clientes", "status", "web", "rust"]
|
||
|
+++
|
||
|
|
||
|
Aplicação web de status de clientes:
|
||
|
|
||
|
* [Rocket](https://rocket.rs/)
|
||
|
* [Diesel](http://diesel.rs/)
|
||
|
* [TailwindCSS](https://tailwindcss.com/)
|
||
|
* Traduzível.
|
||
|
* Contatos
|
||
|
* Nome
|
||
|
* Telefone
|
||
|
* Email
|
||
|
* Empresa
|
||
|
* Clientes são basicamente grupos de contatos + interações.
|
||
|
* Interações podem ser marcadas como "Sucesso" ou "Aguardando".
|
||
|
* Dashboard mostra todos os clientes e seus status.
|
||
|
|
||
|
```
|
||
|
+----------------------------------+
|
||
|
| +-----------+ +----------------+ |
|
||
|
| | Client 1 | | Client 2 | |
|
||
|
| | No issues | | Await response | |
|
||
|
| +-----------+ +----------------+ |
|
||
|
+----------------------------------+
|
||
|
```
|
||
|
|
||
|
"Await response" é o texto da última interação.
|
||
|
|
||
|
```
|
||
|
+----------------------------------+
|
||
|
| Client 2 [ See Contacts ] |
|
||
|
| |
|
||
|
| New interaction: |
|
||
|
| [ ] |
|
||
|
| [ ] |
|
||
|
| [ ] |
|
||
|
| [ Await ] [ Success ] |
|
||
|
| |
|
||
|
| Previous interactions: |
|
||
|
| * DATE - Asked if this works ! |
|
||
|
| * DATE - Await response ? |
|
||
|
+----------------------------------+
|
||
|
```
|
||
|
|
||
|
"Previous interactions" vai do mais antigo para o mais novo.
|
||
|
|
||
|
<!--
|
||
|
vim:spelllang=pt:
|
||
|
-->
|