- Added responsive table styles with mobile card layouts to base.html - Converted all templates from Bootstrap/plain CSS to Tailwind CSS - Implemented responsive tables with horizontal scroll on desktop - Added mobile card layouts for better readability on small screens - Standardized form layouts with Tailwind responsive grid - Updated all 15 templates for consistent styling: * base.html (responsive table CSS) * index.html (responsive tables + mobile cards) * students.html (Bootstrap -> Tailwind) * student_detail.html (Bootstrap -> Tailwind) * add_student.html (Bootstrap -> Tailwind) * edit_student.html (Bootstrap -> Tailwind) * import_students.html (Bootstrap -> Tailwind) * loan_tablet.html (Bootstrap -> Tailwind) * history.html (plain CSS -> Tailwind) * non_loanable_devices.html (plain CSS -> Tailwind) * add_non_loanable_device.html (plain CSS -> Tailwind) * edit_non_loanable_device.html (plain CSS -> Tailwind) * add_tablet.html (plain CSS -> Tailwind) * add_user.html (plain CSS -> Tailwind) * project_management.html (plain CSS -> Tailwind)
67 lines
3.9 KiB
HTML
67 lines
3.9 KiB
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
<div class="max-w-2xl mx-auto space-y-6">
|
|
{# Page Header #}
|
|
<div>
|
|
<h1 class="text-2xl font-bold text-gray-900">{{ _('Add New Tablet') }}</h1>
|
|
<p class="text-gray-600 mt-1">{{ _('Register a new tablet in the system') }}</p>
|
|
</div>
|
|
|
|
{# Tablet Form #}
|
|
<div class="bg-white rounded-lg shadow overflow-hidden">
|
|
<div class="bg-cobalt-600 px-6 py-4">
|
|
<h2 class="text-lg font-semibold text-white">{{ _('Tablet Information') }}</h2>
|
|
</div>
|
|
<div class="p-6">
|
|
<form method="POST" action="/add_tablet" class="space-y-6">
|
|
<div>
|
|
<label for="brand" class="block text-sm font-medium text-gray-700 mb-1">{{ _('Brand') }} *</label>
|
|
<input type="text" id="brand" name="brand" required
|
|
class="w-full px-3 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-cobalt-500 focus:border-cobalt-500"
|
|
placeholder="{{ _('e.g., Apple, Samsung, Lenovo') }}">
|
|
</div>
|
|
|
|
<div>
|
|
<label for="model" class="block text-sm font-medium text-gray-700 mb-1">{{ _('Model') }} *</label>
|
|
<input type="text" id="model" name="model" required
|
|
class="w-full px-3 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-cobalt-500 focus:border-cobalt-500"
|
|
placeholder="{{ _('e.g., iPad 10th Gen, Galaxy Tab A8') }}">
|
|
</div>
|
|
|
|
<div>
|
|
<label for="serial_number" class="block text-sm font-medium text-gray-700 mb-1">{{ _('Serial Number') }} *</label>
|
|
<input type="text" id="serial_number" name="serial_number" required
|
|
class="w-full px-3 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-cobalt-500 focus:border-cobalt-500"
|
|
placeholder="{{ _('Unique serial number') }}">
|
|
<p class="mt-1 text-sm text-gray-500">{{ _('Each tablet must have a unique serial number') }}</p>
|
|
</div>
|
|
|
|
<div>
|
|
<label for="notes" class="block text-sm font-medium text-gray-700 mb-1">{{ _('Notes') }}</label>
|
|
<textarea id="notes" name="notes" rows="3"
|
|
class="w-full px-3 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-cobalt-500 focus:border-cobalt-500"
|
|
placeholder="{{ _('Optional notes about the tablet (condition, accessories, etc.)') }}"></textarea>
|
|
</div>
|
|
|
|
<div class="flex justify-end gap-3 pt-4 border-t border-gray-200">
|
|
<a href="/"
|
|
class="inline-flex items-center gap-2 px-4 py-2 bg-gray-200 text-gray-700 rounded-lg hover:bg-gray-300 transition-colors">
|
|
<svg class="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 18L18 6M6 6l12 12"></path>
|
|
</svg>
|
|
{{ _('Cancel') }}
|
|
</a>
|
|
<button type="submit"
|
|
class="inline-flex items-center gap-2 px-4 py-2 bg-cobalt-600 text-white rounded-lg hover:bg-cobalt-700 transition-colors">
|
|
<svg class="w-5 h-5" 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>
|
|
{{ _('Add Tablet') }}
|
|
</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|