diff options
Diffstat (limited to 'workshop_app')
-rw-r--r-- | workshop_app/models.py | 4 | ||||
-rw-r--r-- | workshop_app/templates/workshop_app/index.html | 2 | ||||
-rw-r--r-- | workshop_app/templates/workshop_app/propose_workshop.html | 7 |
3 files changed, 10 insertions, 3 deletions
diff --git a/workshop_app/models.py b/workshop_app/models.py index 04c3227..680e075 100644 --- a/workshop_app/models.py +++ b/workshop_app/models.py @@ -205,7 +205,7 @@ class ProposeWorkshopDate(models.Model): """ condition_one = models.BooleanField(default=False, help_text='We assure to\ - give minimum 30 participants for the workshop.') + give minimum 25 participants for the workshop.') condition_two = models.BooleanField(default=False, help_text='We agree \ that this booking won\'t be cancelled without \ 2days of prior notice to the instructor and fossee.') @@ -291,4 +291,4 @@ class ProfileComments(models.Model): self.created_date, self.coordinator_profile, self.instructor_profile - )
\ No newline at end of file + ) diff --git a/workshop_app/templates/workshop_app/index.html b/workshop_app/templates/workshop_app/index.html index 118f875..2ad4e85 100644 --- a/workshop_app/templates/workshop_app/index.html +++ b/workshop_app/templates/workshop_app/index.html @@ -121,7 +121,7 @@ $(document).ready(function(){ <div class="col-4"> <br> - <a href="#"><img src="{{ URL_ROOT}}/static/workshop_app/img/Crs_4.png"></a> + <a href="{{URL_ROOT}}/view_workshoptype_details/3"><img src="{{ URL_ROOT}}/static/workshop_app/img/Crs_4.png"></a> </div> </div> diff --git a/workshop_app/templates/workshop_app/propose_workshop.html b/workshop_app/templates/workshop_app/propose_workshop.html index fb164a5..8f1550f 100644 --- a/workshop_app/templates/workshop_app/propose_workshop.html +++ b/workshop_app/templates/workshop_app/propose_workshop.html @@ -45,6 +45,11 @@ </style> <div class="container"> + <div class="alert alert-info"> + Please Note: Students have to take a mandatory test before Advanced Python + Workshop only those who will clear this test will be eligible to attend + the workshop. + </div> <form method="post"> {% csrf_token %} <br/> @@ -52,5 +57,7 @@ <br><br> <button class="btn btn-success" type="submit">Submit</button> </form> + <br> + </div> {% endblock %} |