Files
leocrm/app/templates/dashboard.html
T

35 lines
1.1 KiB
HTML
Raw Normal View History

2026-06-15 22:04:05 +00:00
{% extends "base.html" %}
{% block content %}
<h2>Dashboard</h2>
<a href="{{ url_for('company_create') }}" class="btn btn-primary">Neue Firma</a>
{% if companies %}
<table>
<thead>
<tr>
<th>Name</th>
<th>Telefon</th>
<th>Email</th>
<th>Aktionen</th>
</tr>
</thead>
<tbody>
{% for c in companies %}
<tr>
<td><a href="{{ url_for('contact_list', company_id=c.id) }}">{{ c.name }}</a></td>
<td>{{ c.phone or '-' }}</td>
<td>{{ c.email or '-' }}</td>
<td>
<a href="{{ url_for('company_edit', id=c.id) }}" class="btn btn-sm btn-secondary">Edit</a>
<form method="post" action="{{ url_for('company_delete', id=c.id) }}" style="display:inline;">
<button type="submit" class="btn btn-sm btn-danger" onclick="return confirm('Wirklich löschen?')">Del</button>
</form>
</td>
</tr>
{% endfor %}
</tbody>
</table>
{% else %}
<p>Noch keine Firmen erfasst.</p>
{% endif %}
{% endblock %}