-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
improved call back list and added hide button
- Loading branch information
Showing
8 changed files
with
72 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Generated by Django 4.2.11 on 2024-10-07 10:05 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("experiments", "0015_timeslot_end_after_start"), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name="call", | ||
name="hidden", | ||
field=models.BooleanField(default=False), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,18 @@ | ||
from django.urls import path | ||
|
||
from ..views.call_views import CallHomeView, AppointmentConfirm, UpdateCall, AppointmentSendEmail | ||
from ..views.call_views import ( | ||
AppointmentConfirm, | ||
AppointmentSendEmail, | ||
CallHomeView, | ||
HideCall, | ||
UpdateCall, | ||
) | ||
|
||
urlpatterns = [ | ||
path('<int:experiment>/call/<int:participant>', CallHomeView.as_view(), name='call'), | ||
|
||
|
||
path('call/appointment/', AppointmentConfirm.as_view()), | ||
path('call/appointment/email/<int:pk>/', AppointmentSendEmail.as_view()), | ||
path('call/appointment/email/', AppointmentSendEmail.as_view()), | ||
path('call/<int:pk>/', UpdateCall.as_view()) | ||
path("<int:experiment>/call/<int:participant>", CallHomeView.as_view(), name="call"), | ||
path("call/appointment/", AppointmentConfirm.as_view()), | ||
path("call/appointment/email/<int:pk>/", AppointmentSendEmail.as_view()), | ||
path("call/appointment/email/", AppointmentSendEmail.as_view()), | ||
path("call/<int:pk>/", UpdateCall.as_view()), | ||
path("call/<int:pk>/hide/", HideCall.as_view(), name="call_hide"), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters