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.
20 lines
616 B
20 lines
616 B
{{define "content"}}
|
|
<h2>Dashboard</h2>
|
|
<p>Welcome to the ServiceTrade Tools Dashboard.</p>
|
|
|
|
<div class="dashboard-grid">
|
|
<div class="dashboard-item">
|
|
<h3>Manage Jobs</h3>
|
|
<a href="/jobs" hx-get="/jobs" hx-target="#content">View Jobs</a>
|
|
</div>
|
|
<div class="dashboard-item">
|
|
<h3>Manage Assets</h3>
|
|
<a href="/assets" hx-get="/assets" hx-target="#content">View Assets</a>
|
|
</div>
|
|
<div class="dashboard-item">
|
|
<h3>Manage Companies</h3>
|
|
<a href="/companies" hx-get="/companies" hx-target="#content">View Companies</a>
|
|
</div>
|
|
<!-- Add more dashboard items as needed -->
|
|
</div>
|
|
{{end}}
|
|
|