2026-06-03 10:43:17 +01:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
|
|
{% block content %}
|
2026-06-20 08:38:42 +01:00
|
|
|
<div class="space-y-8">
|
|
|
|
|
{# Available Tablets Section #}
|
|
|
|
|
<div class="bg-white rounded-lg shadow">
|
|
|
|
|
<div class="p-6 border-b border-gray-200">
|
|
|
|
|
<h2 class="text-xl font-semibold text-gray-800 flex items-center gap-2">
|
|
|
|
|
<svg class="w-6 h-6 text-green-600" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
|
|
|
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
|
|
|
|
|
d="M12 19l9 2-9-18-9 18 9-2zm0 0v-8"></path>
|
|
|
|
|
</svg>
|
feat(i18n): add Spanish localization support with Flask-Babel
- Add Flask-Babel for internationalization
- Configure app for Spanish (default) and English
- Add language switcher in navigation
- Wrap all UI text in templates with gettext()
- Create translation directory structure
- Add complete Spanish translations (58 strings)
- Add English translations (template)
- Compile .po to .mo files
- Add extract_translations.py script for future updates
- Add compile_translations.py script
Spanish is now the default language, with English available via ?lang=en
Translated strings include:
- Navigation (Home, Add Tablet, Add User, etc.)
- User Loans interface (Search, Filter, Status, etc.)
- Table headers (User, Tablet, Serial Number, etc.)
- Buttons (Loan, Return, Search, etc.)
- Messages (No users found, No active loans, etc.)
- All UI text across all templates
2026-06-20 09:58:13 +01:00
|
|
|
{{ _('Available Tablets') }}
|
2026-06-20 08:38:42 +01:00
|
|
|
<span class="ml-2 px-2 py-1 bg-green-100 text-green-800 text-xs font-medium rounded-full">
|
|
|
|
|
{{ available_tablets|length }}
|
|
|
|
|
</span>
|
|
|
|
|
</h2>
|
|
|
|
|
</div>
|
|
|
|
|
|
2026-06-03 10:43:17 +01:00
|
|
|
{% if available_tablets %}
|
2026-06-24 15:53:55 +01:00
|
|
|
{# Desktop Table (hidden on mobile) #}
|
|
|
|
|
<div class="table-container table-card-mobile">
|
|
|
|
|
<table class="table-responsive">
|
|
|
|
|
<thead>
|
2026-06-03 10:43:17 +01:00
|
|
|
<tr>
|
2026-06-24 15:53:55 +01:00
|
|
|
<th>{{ _('Brand') }}</th>
|
|
|
|
|
<th>{{ _('Model') }}</th>
|
|
|
|
|
<th>{{ _('Serial Number') }}</th>
|
|
|
|
|
<th>{{ _('Notes') }}</th>
|
|
|
|
|
<th class="text-right">{{ _('Actions') }}</th>
|
2026-06-03 10:43:17 +01:00
|
|
|
</tr>
|
2026-06-20 01:20:39 +01:00
|
|
|
</thead>
|
2026-06-24 15:53:55 +01:00
|
|
|
<tbody>
|
2026-06-20 01:20:39 +01:00
|
|
|
{% for tablet in available_tablets %}
|
2026-06-24 15:53:55 +01:00
|
|
|
<tr>
|
|
|
|
|
<td>
|
2026-06-20 08:38:42 +01:00
|
|
|
<div class="font-medium text-gray-900">{{ tablet.brand }}</div>
|
|
|
|
|
</td>
|
2026-06-24 15:53:55 +01:00
|
|
|
<td class="text-gray-500">
|
2026-06-20 08:38:42 +01:00
|
|
|
{{ tablet.model }}
|
|
|
|
|
</td>
|
2026-06-24 15:53:55 +01:00
|
|
|
<td>
|
2026-06-20 08:38:42 +01:00
|
|
|
<code class="text-sm bg-gray-100 px-2 py-1 rounded">{{ tablet.serial_number }}</code>
|
|
|
|
|
</td>
|
2026-06-24 15:53:55 +01:00
|
|
|
<td class="text-gray-500">
|
2026-06-20 08:38:42 +01:00
|
|
|
{{ tablet.notes or '-' }}
|
|
|
|
|
</td>
|
2026-06-24 15:53:55 +01:00
|
|
|
<td class="text-right">
|
2026-06-20 08:38:42 +01:00
|
|
|
<a href="/loan_tablet?tablet_id={{ tablet.id }}"
|
|
|
|
|
class="inline-flex items-center gap-1 px-3 py-1 bg-green-100 text-green-700 rounded-lg text-sm hover:bg-green-200">
|
|
|
|
|
<svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
|
|
|
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
|
|
|
|
|
d="M12 6v6m0 0v6m0-6h6m-6 0H6"></path>
|
|
|
|
|
</svg>
|
feat(i18n): add Spanish localization support with Flask-Babel
- Add Flask-Babel for internationalization
- Configure app for Spanish (default) and English
- Add language switcher in navigation
- Wrap all UI text in templates with gettext()
- Create translation directory structure
- Add complete Spanish translations (58 strings)
- Add English translations (template)
- Compile .po to .mo files
- Add extract_translations.py script for future updates
- Add compile_translations.py script
Spanish is now the default language, with English available via ?lang=en
Translated strings include:
- Navigation (Home, Add Tablet, Add User, etc.)
- User Loans interface (Search, Filter, Status, etc.)
- Table headers (User, Tablet, Serial Number, etc.)
- Buttons (Loan, Return, Search, etc.)
- Messages (No users found, No active loans, etc.)
- All UI text across all templates
2026-06-20 09:58:13 +01:00
|
|
|
{{ _('Loan') }}
|
2026-06-20 08:38:42 +01:00
|
|
|
</a>
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
2026-06-20 01:20:39 +01:00
|
|
|
{% endfor %}
|
|
|
|
|
</tbody>
|
|
|
|
|
</table>
|
|
|
|
|
</div>
|
2026-06-24 15:53:55 +01:00
|
|
|
|
|
|
|
|
{# Mobile Cards (hidden on desktop) #}
|
|
|
|
|
<div class="mobile-cards hidden p-6">
|
|
|
|
|
{% for tablet in available_tablets %}
|
|
|
|
|
<div class="mobile-card">
|
|
|
|
|
<div class="flex justify-between items-start mb-3">
|
|
|
|
|
<div>
|
|
|
|
|
<div class="font-medium text-gray-900">{{ tablet.brand }}</div>
|
|
|
|
|
<div class="text-sm text-gray-500">{{ tablet.model }}</div>
|
|
|
|
|
</div>
|
|
|
|
|
<a href="/loan_tablet?tablet_id={{ tablet.id }}"
|
|
|
|
|
class="inline-flex items-center gap-1 px-3 py-1 bg-green-100 text-green-700 rounded-lg text-sm hover:bg-green-200">
|
|
|
|
|
<svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
|
|
|
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
|
|
|
|
|
d="M12 6v6m0 0v6m0-6h6m-6 0H6"></path>
|
|
|
|
|
</svg>
|
|
|
|
|
{{ _('Loan') }}
|
|
|
|
|
</a>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="space-y-2">
|
|
|
|
|
<div class="card-row">
|
|
|
|
|
<span class="card-label">{{ _('Serial Number') }}</span>
|
|
|
|
|
<code class="card-value text-sm bg-gray-100 px-2 py-1 rounded">{{ tablet.serial_number }}</code>
|
|
|
|
|
</div>
|
|
|
|
|
{% if tablet.notes %}
|
|
|
|
|
<div class="card-row">
|
|
|
|
|
<span class="card-label">{{ _('Notes') }}</span>
|
|
|
|
|
<span class="card-value text-sm">{{ tablet.notes }}</span>
|
|
|
|
|
</div>
|
|
|
|
|
{% endif %}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
{% endfor %}
|
|
|
|
|
</div>
|
2026-06-03 10:43:17 +01:00
|
|
|
{% else %}
|
2026-06-20 08:38:42 +01:00
|
|
|
<div class="p-8 text-center text-gray-500">
|
|
|
|
|
<svg class="mx-auto h-12 w-12 mb-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
|
|
|
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
|
|
|
|
|
d="M20 7l-8-4-8 4m16 0l-8 4m8-4v10l-8 4m0-10L4 7m8 4v10M4 7v10l8 4"></path>
|
|
|
|
|
</svg>
|
feat(i18n): add Spanish localization support with Flask-Babel
- Add Flask-Babel for internationalization
- Configure app for Spanish (default) and English
- Add language switcher in navigation
- Wrap all UI text in templates with gettext()
- Create translation directory structure
- Add complete Spanish translations (58 strings)
- Add English translations (template)
- Compile .po to .mo files
- Add extract_translations.py script for future updates
- Add compile_translations.py script
Spanish is now the default language, with English available via ?lang=en
Translated strings include:
- Navigation (Home, Add Tablet, Add User, etc.)
- User Loans interface (Search, Filter, Status, etc.)
- Table headers (User, Tablet, Serial Number, etc.)
- Buttons (Loan, Return, Search, etc.)
- Messages (No users found, No active loans, etc.)
- All UI text across all templates
2026-06-20 09:58:13 +01:00
|
|
|
<p>{{ _('No available tablets') }}</p>
|
2026-06-20 08:38:42 +01:00
|
|
|
<a href="/add_tablet"
|
|
|
|
|
class="mt-4 inline-block px-4 py-2 bg-green-600 text-white rounded-lg hover:bg-green-700">
|
feat(i18n): add Spanish localization support with Flask-Babel
- Add Flask-Babel for internationalization
- Configure app for Spanish (default) and English
- Add language switcher in navigation
- Wrap all UI text in templates with gettext()
- Create translation directory structure
- Add complete Spanish translations (58 strings)
- Add English translations (template)
- Compile .po to .mo files
- Add extract_translations.py script for future updates
- Add compile_translations.py script
Spanish is now the default language, with English available via ?lang=en
Translated strings include:
- Navigation (Home, Add Tablet, Add User, etc.)
- User Loans interface (Search, Filter, Status, etc.)
- Table headers (User, Tablet, Serial Number, etc.)
- Buttons (Loan, Return, Search, etc.)
- Messages (No users found, No active loans, etc.)
- All UI text across all templates
2026-06-20 09:58:13 +01:00
|
|
|
{{ _('Add Tablet') }}
|
2026-06-20 08:38:42 +01:00
|
|
|
</a>
|
|
|
|
|
</div>
|
2026-06-03 10:43:17 +01:00
|
|
|
{% endif %}
|
|
|
|
|
</div>
|
2026-06-20 08:38:42 +01:00
|
|
|
|
|
|
|
|
{# Active Loans Section #}
|
|
|
|
|
<div class="bg-white rounded-lg shadow">
|
|
|
|
|
<div class="p-6 border-b border-gray-200">
|
|
|
|
|
<h2 class="text-xl font-semibold text-gray-800 flex items-center gap-2">
|
|
|
|
|
<svg class="w-6 h-6 text-green-600" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
|
|
|
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
|
|
|
|
|
d="M12 8v4l3 3m6-3a9 9 0 11-18 0 9 9 0 0118 0z"></path>
|
|
|
|
|
</svg>
|
feat(i18n): add Spanish localization support with Flask-Babel
- Add Flask-Babel for internationalization
- Configure app for Spanish (default) and English
- Add language switcher in navigation
- Wrap all UI text in templates with gettext()
- Create translation directory structure
- Add complete Spanish translations (58 strings)
- Add English translations (template)
- Compile .po to .mo files
- Add extract_translations.py script for future updates
- Add compile_translations.py script
Spanish is now the default language, with English available via ?lang=en
Translated strings include:
- Navigation (Home, Add Tablet, Add User, etc.)
- User Loans interface (Search, Filter, Status, etc.)
- Table headers (User, Tablet, Serial Number, etc.)
- Buttons (Loan, Return, Search, etc.)
- Messages (No users found, No active loans, etc.)
- All UI text across all templates
2026-06-20 09:58:13 +01:00
|
|
|
{{ _('Active Loans') }}
|
2026-06-20 08:38:42 +01:00
|
|
|
<span class="ml-2 px-2 py-1 bg-green-100 text-green-800 text-xs font-medium rounded-full">
|
|
|
|
|
{{ active_loans|length }}
|
|
|
|
|
</span>
|
|
|
|
|
</h2>
|
|
|
|
|
</div>
|
|
|
|
|
|
2026-06-03 10:43:17 +01:00
|
|
|
{% if active_loans %}
|
2026-06-24 15:53:55 +01:00
|
|
|
{# Desktop Table (hidden on mobile) #}
|
|
|
|
|
<div class="table-container table-card-mobile">
|
|
|
|
|
<table class="table-responsive">
|
|
|
|
|
<thead>
|
2026-06-03 10:43:17 +01:00
|
|
|
<tr>
|
2026-06-24 15:53:55 +01:00
|
|
|
<th>{{ _('Tablet') }}</th>
|
|
|
|
|
<th>{{ _('Serial Number') }}</th>
|
|
|
|
|
<th>{{ _('Borrower') }}</th>
|
|
|
|
|
<th>{{ _('Loan Date') }}</th>
|
|
|
|
|
<th class="text-right">{{ _('Actions') }}</th>
|
2026-06-03 10:43:17 +01:00
|
|
|
</tr>
|
2026-06-20 01:20:39 +01:00
|
|
|
</thead>
|
2026-06-24 15:53:55 +01:00
|
|
|
<tbody>
|
2026-06-20 01:20:39 +01:00
|
|
|
{% for loan in active_loans %}
|
2026-06-24 15:53:55 +01:00
|
|
|
<tr>
|
|
|
|
|
<td>
|
2026-06-20 08:38:42 +01:00
|
|
|
<div class="font-medium text-gray-900">{{ loan.brand }} {{ loan.model }}</div>
|
|
|
|
|
</td>
|
2026-06-24 15:53:55 +01:00
|
|
|
<td>
|
2026-06-20 08:38:42 +01:00
|
|
|
<code class="text-sm bg-gray-100 px-2 py-1 rounded">{{ loan.serial_number }}</code>
|
|
|
|
|
</td>
|
2026-06-24 15:53:55 +01:00
|
|
|
<td>
|
2026-06-20 08:38:42 +01:00
|
|
|
<div class="font-medium text-gray-900">{{ loan.name }}</div>
|
|
|
|
|
<div class="text-sm text-gray-500">{{ loan.identification }}</div>
|
|
|
|
|
</td>
|
2026-06-24 15:53:55 +01:00
|
|
|
<td class="text-sm text-gray-500">
|
feat(i18n): add Spanish localization support with Flask-Babel
- Add Flask-Babel for internationalization
- Configure app for Spanish (default) and English
- Add language switcher in navigation
- Wrap all UI text in templates with gettext()
- Create translation directory structure
- Add complete Spanish translations (58 strings)
- Add English translations (template)
- Compile .po to .mo files
- Add extract_translations.py script for future updates
- Add compile_translations.py script
Spanish is now the default language, with English available via ?lang=en
Translated strings include:
- Navigation (Home, Add Tablet, Add User, etc.)
- User Loans interface (Search, Filter, Status, etc.)
- Table headers (User, Tablet, Serial Number, etc.)
- Buttons (Loan, Return, Search, etc.)
- Messages (No users found, No active loans, etc.)
- All UI text across all templates
2026-06-20 09:58:13 +01:00
|
|
|
{{ loan.loan_date[:10] if loan.loan_date else _('N/A') }}
|
2026-06-24 15:53:55 +01:00
|
|
|
<br>
|
|
|
|
|
<span class="text-xs">{{ loan.loan_date[11:16] if loan.loan_date else '' }}</span>
|
2026-06-20 08:38:42 +01:00
|
|
|
</td>
|
2026-06-24 15:53:55 +01:00
|
|
|
<td class="text-right">
|
2026-06-20 08:38:42 +01:00
|
|
|
<a href="/return_tablet/{{ loan.id }}"
|
|
|
|
|
class="inline-flex items-center gap-1 px-3 py-1 bg-red-100 text-red-700 rounded-lg text-sm hover:bg-red-200">
|
|
|
|
|
<svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
|
|
|
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
|
|
|
|
|
d="M9 5l7 7-7 7"></path>
|
|
|
|
|
</svg>
|
feat(i18n): add Spanish localization support with Flask-Babel
- Add Flask-Babel for internationalization
- Configure app for Spanish (default) and English
- Add language switcher in navigation
- Wrap all UI text in templates with gettext()
- Create translation directory structure
- Add complete Spanish translations (58 strings)
- Add English translations (template)
- Compile .po to .mo files
- Add extract_translations.py script for future updates
- Add compile_translations.py script
Spanish is now the default language, with English available via ?lang=en
Translated strings include:
- Navigation (Home, Add Tablet, Add User, etc.)
- User Loans interface (Search, Filter, Status, etc.)
- Table headers (User, Tablet, Serial Number, etc.)
- Buttons (Loan, Return, Search, etc.)
- Messages (No users found, No active loans, etc.)
- All UI text across all templates
2026-06-20 09:58:13 +01:00
|
|
|
{{ _('Return') }}
|
2026-06-20 08:38:42 +01:00
|
|
|
</a>
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
2026-06-20 01:20:39 +01:00
|
|
|
{% endfor %}
|
|
|
|
|
</tbody>
|
|
|
|
|
</table>
|
|
|
|
|
</div>
|
2026-06-24 15:53:55 +01:00
|
|
|
|
|
|
|
|
{# Mobile Cards (hidden on desktop) #}
|
|
|
|
|
<div class="mobile-cards hidden p-6">
|
|
|
|
|
{% for loan in active_loans %}
|
|
|
|
|
<div class="mobile-card">
|
|
|
|
|
<div class="flex justify-between items-start mb-3">
|
|
|
|
|
<div>
|
|
|
|
|
<div class="font-medium text-gray-900">{{ loan.brand }} {{ loan.model }}</div>
|
|
|
|
|
<div class="text-sm text-gray-500">{{ loan.name }}</div>
|
|
|
|
|
</div>
|
|
|
|
|
<a href="/return_tablet/{{ loan.id }}"
|
|
|
|
|
class="inline-flex items-center gap-1 px-3 py-1 bg-red-100 text-red-700 rounded-lg text-sm hover:bg-red-200">
|
|
|
|
|
<svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
|
|
|
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
|
|
|
|
|
d="M9 5l7 7-7 7"></path>
|
|
|
|
|
</svg>
|
|
|
|
|
{{ _('Return') }}
|
|
|
|
|
</a>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="space-y-2">
|
|
|
|
|
<div class="card-row">
|
|
|
|
|
<span class="card-label">{{ _('Serial Number') }}</span>
|
|
|
|
|
<code class="card-value text-sm bg-gray-100 px-2 py-1 rounded">{{ loan.serial_number }}</code>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="card-row">
|
|
|
|
|
<span class="card-label">{{ _('Borrower') }}</span>
|
|
|
|
|
<div class="card-value text-right">
|
|
|
|
|
<div>{{ loan.name }}</div>
|
|
|
|
|
<div class="text-xs text-gray-500">{{ loan.identification }}</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="card-row">
|
|
|
|
|
<span class="card-label">{{ _('Loan Date') }}</span>
|
|
|
|
|
<span class="card-value">{{ loan.loan_date[:10] if loan.loan_date else _('N/A') }}</span>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
{% endfor %}
|
|
|
|
|
</div>
|
2026-06-03 10:43:17 +01:00
|
|
|
{% else %}
|
2026-06-20 08:38:42 +01:00
|
|
|
<div class="p-8 text-center text-gray-500">
|
|
|
|
|
<svg class="mx-auto h-12 w-12 mb-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
|
|
|
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
|
|
|
|
|
d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path>
|
|
|
|
|
</svg>
|
feat(i18n): add Spanish localization support with Flask-Babel
- Add Flask-Babel for internationalization
- Configure app for Spanish (default) and English
- Add language switcher in navigation
- Wrap all UI text in templates with gettext()
- Create translation directory structure
- Add complete Spanish translations (58 strings)
- Add English translations (template)
- Compile .po to .mo files
- Add extract_translations.py script for future updates
- Add compile_translations.py script
Spanish is now the default language, with English available via ?lang=en
Translated strings include:
- Navigation (Home, Add Tablet, Add User, etc.)
- User Loans interface (Search, Filter, Status, etc.)
- Table headers (User, Tablet, Serial Number, etc.)
- Buttons (Loan, Return, Search, etc.)
- Messages (No users found, No active loans, etc.)
- All UI text across all templates
2026-06-20 09:58:13 +01:00
|
|
|
<p>{{ _('No active loans') }}</p>
|
2026-06-20 08:38:42 +01:00
|
|
|
</div>
|
2026-06-03 10:43:17 +01:00
|
|
|
{% endif %}
|
|
|
|
|
</div>
|
2026-06-20 08:38:42 +01:00
|
|
|
</div>
|
2026-06-24 15:53:55 +01:00
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
// Show mobile cards on small screens
|
|
|
|
|
if (window.innerWidth <= 640) {
|
|
|
|
|
document.querySelectorAll('.table-card-mobile').forEach(el => el.style.display = 'none');
|
|
|
|
|
document.querySelectorAll('.mobile-cards').forEach(el => el.style.display = 'flex');
|
|
|
|
|
}
|
|
|
|
|
</script>
|
2026-06-20 08:38:42 +01:00
|
|
|
{% endblock %}
|