régler problème avec le bot discord et ajouter un panneau pour gérer les one on one (accepter ,refuser, confirmer)
This commit is contained in:
@@ -105,6 +105,94 @@
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- One on One Requests Section -->
|
||||
<div class="card mt-4">
|
||||
<div class="card-header">
|
||||
<h3><i class="fas fa-calendar-check"></i> One on One Requests</h3>
|
||||
{% if org_team %}
|
||||
<span class="badge badge-esport">{{ org_team.name }}</span>
|
||||
{% endif %}
|
||||
</div>
|
||||
<div class="card-body">
|
||||
{% if one_on_one_requests %}
|
||||
<div class="table-responsive">
|
||||
<table class="table">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Player</th>
|
||||
<th>Date</th>
|
||||
<th>Time</th>
|
||||
<th>Discussion Points</th>
|
||||
<th>Status</th>
|
||||
<th>Actions</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{% for req in one_on_one_requests %}
|
||||
<tr>
|
||||
<td>{{ req.player.username if req.player else 'Unknown' }}</td>
|
||||
<td>{{ req.date.strftime('%b %d, %Y') }}</td>
|
||||
<td>{{ req.start_time.strftime('%I:%M %p') }} - {{ req.end_time.strftime('%I:%M %p') }}</td>
|
||||
<td>{{ req.points or 'N/A' }}</td>
|
||||
<td>
|
||||
{% if req.status == 'pending' %}
|
||||
<span class="badge badge-warning">Pending</span>
|
||||
{% elif req.status == 'approved' %}
|
||||
<span class="badge badge-success">Approved</span>
|
||||
{% elif req.status == 'rejected' %}
|
||||
<span class="badge badge-danger">Rejected</span>
|
||||
{% endif %}
|
||||
</td>
|
||||
<td>
|
||||
{% if req.status == 'pending' %}
|
||||
<form method="POST" action="{{ url_for('users.accept_one_on_one', request_id=req.id) }}" style="display:inline;">
|
||||
<input type="hidden" name="csrf_token" value="{{ csrf_token() }}"/>
|
||||
<button type="submit" class="btn btn-sm btn-success" title="Accept">
|
||||
<i class="fas fa-check"></i> Accept
|
||||
</button>
|
||||
</form>
|
||||
<button type="button" class="btn btn-sm btn-danger" onclick="showRejectModal({{ req.id }})" title="Refuse">
|
||||
<i class="fas fa-times"></i> Refuse
|
||||
</button>
|
||||
{% elif req.status == 'rejected' and req.coach_rejection_message %}
|
||||
<span class="text-muted small" title="{{ req.coach_rejection_message }}">Reason: {{ req.coach_rejection_message[:50] }}{% if req.coach_rejection_message|length > 50 %}...{% endif %}</span>
|
||||
{% endif %}
|
||||
</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
{% else %}
|
||||
<p class="text-muted">No One on One requests from your players yet.</p>
|
||||
{% endif %}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Reject Modal -->
|
||||
<div id="rejectModal" class="modal" style="display:none;">
|
||||
<div class="modal-overlay" onclick="hideRejectModal()"></div>
|
||||
<div class="modal-content">
|
||||
<div class="modal-header">
|
||||
<h4><i class="fas fa-times-circle"></i> Reject One on One Request</h4>
|
||||
<button type="button" class="modal-close" onclick="hideRejectModal()">×</button>
|
||||
</div>
|
||||
<form id="rejectForm" method="POST" action="">
|
||||
<input type="hidden" name="csrf_token" value="{{ csrf_token() }}"/>
|
||||
<div class="modal-body">
|
||||
<div class="form-group">
|
||||
<label for="rejection_reason">Reason for rejection (optional):</label>
|
||||
<textarea name="rejection_reason" id="rejection_reason" class="form-textarea" rows="3" placeholder="Let the player know why this time doesn't work..."></textarea>
|
||||
</div>
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button type="button" class="btn btn-secondary" onclick="hideRejectModal()">Cancel</button>
|
||||
<button type="submit" class="btn btn-danger">Reject Request</button>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="dashboard-grid mt-4">
|
||||
<!-- Team Notes History -->
|
||||
{% if org_team and team_notes %}
|
||||
@@ -169,4 +257,20 @@
|
||||
</div>
|
||||
{% endif %}
|
||||
</div>
|
||||
{% endblock %}
|
||||
|
||||
{% block scripts %}
|
||||
<script>
|
||||
function showRejectModal(requestId) {
|
||||
const modal = document.getElementById('rejectModal');
|
||||
const form = document.getElementById('rejectForm');
|
||||
form.action = "{{ url_for('users.reject_one_on_one', request_id=0) }}".replace('0', requestId);
|
||||
modal.style.display = 'flex';
|
||||
}
|
||||
|
||||
function hideRejectModal() {
|
||||
document.getElementById('rejectModal').style.display = 'none';
|
||||
document.getElementById('rejection_reason').value = '';
|
||||
}
|
||||
</script>
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user