Dashboard grid
The dashboard displays your active vehicles as cards. Each card shows the vehicle’s alias, brand, model year, license plates, and key metrics such as total distance traveled. Select a vehicle card to navigate to its detail pages.Only active vehicles appear in the dashboard grid by default. Deactivated vehicles are hidden but their data is fully preserved.
Adding a vehicle
Open the add vehicle form
From the dashboard, click Add Vehicle in the top-right area. This opens the vehicle registration form.
Enter the vehicle alias
Type a short, unique identifier for the vehicle in the Alias field. The alias is used in all URLs and cannot be changed after creation.Tips for a good alias:
- Keep it short and memorable (e.g.,
my-car,truck01,honda-crv) - Use only lowercase letters, numbers, and hyphens
- Avoid spaces and special characters
Fill in the vehicle details
Complete the remaining fields:
| Field | Description |
|---|---|
| Marca | Vehicle brand (e.g., Toyota, Ford) |
| Modelo | Model year as a four-digit number (e.g., 2021) |
| Plates | License plate number |
| Kilometraje inicial | Starting odometer reading in kilometers |
Vehicle alias
The alias is the permanent, URL-safe identifier for a vehicle. KilomeTracker uses it instead of a database ID to keep URLs readable and stable. For example, a vehicle with aliashonda-crv is accessible at:
/vehicle-stats/honda-crv— statistics and cost overview/edit-vehicle/honda-crv— edit vehicle details/fuel-analysis/honda-crv— fuel efficiency analysis
- Use something descriptive and recognizable, like the make and a number (
ford-01). - Keep it under 20 characters.
- Do not use spaces — use hyphens instead.
- Lowercase only for consistency.
Editing a vehicle
You can update a vehicle’s brand, model year, license plates, and starting odometer reading. The alias cannot be changed.Open the edit form
Click the edit icon on the vehicle card. This navigates to the
/edit-vehicle/[alias] page.Deactivating a vehicle
Deactivation is a soft delete — the vehicle is hidden from the dashboard but all associated data (routes, refuels, maintenance records, expenses) is fully preserved and can be queried.Deactivating a vehicle does not delete any data. All historical routes, refuels, maintenance records, and expenses remain intact. You can reactivate the vehicle at any time via the API (
PATCH /api/vehicles/[alias]/reactivate).Related pages
Vehicle statistics
View cost of ownership, efficiency metrics, and activity counts for each vehicle.
Tracking routes
Log trips and track distance traveled per vehicle.
Tracking fuel
Record refuels and monitor fuel consumption over time.
Tracking maintenance
Schedule and log service records for each vehicle.