Re: Open source CBT Application

2022-11-07 Thread Adekola Aderonmu
Awesome

On Tue, 8 Nov 2022, 08:20 odeyale kehinde,  wrote:

> Yes.
>
>
> On Tuesday, November 8, 2022 at 06:25:03 AM GMT+1, Sherif Adigun <
> adigunshe...@gmail.com> wrote:
>
>
> Looking for an active Django Project to contribute and collaborate on?
>
> Join me on Django CBT.
>
> https://github.com/adigunsherif/cbt
>
> Let build a reliable open source Computer Based Test Software on Django
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/42be400b-db64-4169-b94d-3c56bc59244bn%40googlegroups.com
> 
> .
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/1187754824.577489.1667891968488%40mail.yahoo.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CA%2BGpPKwfRqg2daQqzLTKt6NrLrCyvoAnA7R1ZJWMOfDEGg58sg%40mail.gmail.com.


Re: Open source CBT Application

2022-11-07 Thread odeyale kehinde
Yes.  

On Tuesday, November 8, 2022 at 06:25:03 AM GMT+1, Sherif Adigun 
 wrote:  
 
 Looking for an active Django Project to contribute and collaborate on? 
Join me on Django CBT.
https://github.com/adigunsherif/cbt
Let build a reliable open source Computer Based Test Software on Django 

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/42be400b-db64-4169-b94d-3c56bc59244bn%40googlegroups.com.
  

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/1187754824.577489.1667891968488%40mail.yahoo.com.


Open source CBT Application

2022-11-07 Thread Sherif Adigun
Looking for an active Django Project to contribute and collaborate on? 

Join me on Django CBT.

https://github.com/adigunsherif/cbt

Let build a reliable open source Computer Based Test Software on Django 

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/42be400b-db64-4169-b94d-3c56bc59244bn%40googlegroups.com.


Re: Django multistep form

2022-11-07 Thread Obodoma Uzondu Vincent
I have sent the url

On Mon, Nov 7, 2022 at 7:20 PM James  wrote:

> Hi,
>
> Can you also link the relevant urls.py please?
>
> Thanks!
>
> On Monday, November 7, 2022 at 2:58:01 AM UTC-7 uobod...@gmail.com wrote:
>
>> I have a multi-step form that is 3 steps but it has 4 forms. In the first
>> form, the user has to choose from two choices. The user’s first form
>> choices will determine the next form that will be displayed.
>> The code is not working as it should. The first form choices are radio
>> buttons which are commercial and private. If the user chooses commercial it
>> brings the next form and if the user chose private it brings a different
>> form. My problem is that if the user chose private or commercial it brings
>> the same form.
>> Views.py
>> template
>> forms.py
>>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/f782c4e7-5d09-42d9-b3e7-a177ecce8368n%40googlegroups.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CACsKspmczO3vqOmXY%3Dj7bzQ2OmhB5ApO%3DbCYDdBw2%3DCWUVsFpg%40mail.gmail.com.


Re: Django multistep form

2022-11-07 Thread Obodoma Uzondu Vincent
from django.urls import path, include
from .views import step1formview, step2aformview, step2bformview,
step3formview
from . import views





app_name = 'datacollector'

urlpatterns = [

path('', views.step1formview, name="form1views"),
path('customerinfo2a/', views.step2aformview, name="step2aformview"),
path('customerinfo2b/', views.step2bformview, name="step2bformview"),
]

On Mon, Nov 7, 2022 at 7:20 PM James  wrote:

> Hi,
>
> Can you also link the relevant urls.py please?
>
> Thanks!
>
> On Monday, November 7, 2022 at 2:58:01 AM UTC-7 uobod...@gmail.com wrote:
>
>> I have a multi-step form that is 3 steps but it has 4 forms. In the first
>> form, the user has to choose from two choices. The user’s first form
>> choices will determine the next form that will be displayed.
>> The code is not working as it should. The first form choices are radio
>> buttons which are commercial and private. If the user chooses commercial it
>> brings the next form and if the user chose private it brings a different
>> form. My problem is that if the user chose private or commercial it brings
>> the same form.
>> Views.py
>> template
>> forms.py
>>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/f782c4e7-5d09-42d9-b3e7-a177ecce8368n%40googlegroups.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CACsKsp%3DRuyRQx6c6r6xM8DrSLV%3DE7csxWXdt8CMHoqWKKn%2Bk6A%40mail.gmail.com.


Re: Django multistep form

2022-11-07 Thread David Nugent
A quick reading of your code suggests that `form.customer_choices.choices`
should be returned as an array with the state of each choice, so == here is
probably not going to work.

On Mon, Nov 7, 2022 at 8:58 PM Obodoma Uzondu Vincent 
wrote:

> I have a multi-step form that is 3 steps but it has 4 forms. In the first
> form, the user has to choose from two choices. The user’s first form
> choices will determine the next form that will be displayed.
> The code is not working as it should. The first form choices are radio
> buttons which are commercial and private. If the user chooses commercial it
> brings the next form and if the user chose private it brings a different
> form. My problem is that if the user chose private or commercial it brings
> the same form.
> Views.py
> template
> forms.py
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/f3fc2a20-0bea-4ba2-a9a2-c916ffec8ff7n%40googlegroups.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAE5VhgU7BueC%2BYx5X2WzU6HKiVi5g7UZjmKyO%2BOwbBgQsHgZrg%40mail.gmail.com.


Re: Multi-tenant SSO that supports OpenID and MS Azure AD

2022-11-07 Thread Shaheed Haque
Tim,

On Mon, 7 Nov 2022, 19:28 Tim Nelson,  wrote:

> I am looking for a Django SSO package that supports OpenId and Azure AD
> with multi-tenant support. My sense is I am going to have to roll my own by
> forking the best of breed SSO's and adding multi-tenant support to them.
>
> Is my assessment correct?
>

If I understand your question correctly, yes.

For context, I needed to add generic support for both SAML and OIDC based
SSO. The SAML support in django-social-auth supports multiple IDPs
directly, but the OIDC support does not. I had to brew up a wrapper which
gave me the effect of multiple Identity Providers.

Thanks.
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAK09zooyoOOKO7Dyp5LAbqWDphLwfQLBKX2rRWhXZHPqNNjEtQ%40mail.gmail.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAHAc2jffhzb8b1nbdmJde0KJrC4s4j5L13%2BjVsX5LAvC9UwLYA%40mail.gmail.com.


Multi-tenant SSO that supports OpenID and MS Azure AD

2022-11-07 Thread Tim Nelson
I am looking for a Django SSO package that supports OpenId and Azure AD
with multi-tenant support. My sense is I am going to have to roll my own by
forking the best of breed SSO's and adding multi-tenant support to them.

Is my assessment correct?
Thanks.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAK09zooyoOOKO7Dyp5LAbqWDphLwfQLBKX2rRWhXZHPqNNjEtQ%40mail.gmail.com.


Re: Hi need a solution

2022-11-07 Thread sham khan
Check the logs I am certain it will talk about DB. do a migrate first. Once
you delete the DB, the db is not created automatically

On Mon, Nov 7, 2022, 9:37 PM Mh Raffi  wrote:

>
> I have deployed to post g res p g admin4 and deleted db. s q lite from
> Django. and set my allowed host =['*']
>
> Am getting server [500].
>
> if any help will be appreciated
>
> need a solution after deleting s q .lite d b from Django project and used
> allowed host to * .
>
> am getting 500 server request. LOOKING FOR SOLUTION AM NEW TO DJANGO
>
> DEBUG = False ALLOWED_HOSTS = ['*']
>
> DATABASES = { 'default': {
>
> 'ENGINE': 'django.db.backends.postgresql_psycopg2',
> 'NAME': 'accerla',
> 'USER' : 'post g res',
> 'PASSWORD': 'pwd3',
> 'HOST' : 'localhost',
> 'PORT' : '5432',
> }
>
> }
> [07/Nov/2022 05:14:06] INFO [django.utils.autoreload:677] Watching for
> file changes with StatReloader
> [07/Nov/2022 05:14:06] DEBUG [django.utils.autoreload:330] Waiting for
> apps ready_event.
> [07/Nov/2022 05:14:06] DEBUG [django.utils.autoreload:342] Apps
> ready_event triggered. Sending autoreload_started signal.
> [07/Nov/2022 05:14:06] DEBUG [django.utils.autoreload:296] Watching dir
> C:\Users\Admin\Desktop\webappstudioz\templates with glob **/*.
> any suggestion would be appreciated
>
> Thanks & Regards
> Mohammed Raffi.J
>
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAKfPRhUJhovCY8D3pNAzR6hHZWCR35FUGWyt7vE7WNXMTPzn%3Dw%40mail.gmail.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAA7J1XtMDjxJvJRLBP6Psbh%2BSRbnF%2BJghU7SeRC89R%3DNeL0mNQ%40mail.gmail.com.


Re: Django multistep form

2022-11-07 Thread James
Hi,

Can you also link the relevant urls.py please? 

Thanks!

On Monday, November 7, 2022 at 2:58:01 AM UTC-7 uobod...@gmail.com wrote:

> I have a multi-step form that is 3 steps but it has 4 forms. In the first 
> form, the user has to choose from two choices. The user’s first form 
> choices will determine the next form that will be displayed.
> The code is not working as it should. The first form choices are radio 
> buttons which are commercial and private. If the user chooses commercial it 
> brings the next form and if the user chose private it brings a different 
> form. My problem is that if the user chose private or commercial it brings 
> the same form.
> Views.py
> template
> forms.py
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/f782c4e7-5d09-42d9-b3e7-a177ecce8368n%40googlegroups.com.


Re: HOW TO GET DJANGO MODELS FIELD VALUE FROM MODEL OBJECT IN TEMPLATE TAGS-DJANGO

2022-11-07 Thread James
Hi;

There's a method you're supposed to override in your views (inherit from 
Views) to do what you want, it's called "get_context_data". This method 
will pump whatever data you send to it into your template tags.


On Sunday, November 6, 2022 at 4:15:35 AM UTC-7 rani...@gmail.com wrote:

> my models.py
>
> class Locations(models.Model):
> region = models.ForeignKey(Regions, 
> on_delete=models.CASCADE,blank=True,null=True)
> name = models.CharField(max_length=255)
> active_flag = models.BooleanField(default=True)
> created_at = models.DateTimeField(auto_now_add = True)
> updated_at = models.DateTimeField(auto_now=True)
>
> def __str__(self):
> return self.name
>
>
> class Regions(models.Model):
> region_name = models.CharField(max_length=255)
> working_hours_per_day = models.CharField(max_length=255,null=True)
> days_per_week = models.CharField(max_length=255,null=True)
> hours_per_week = models.CharField(max_length=255,null=True)
> week_per_month = models.CharField(max_length=255,null=True)
> hours_per_month = models.CharField(max_length=255,null=True)
> days_per_year = models.CharField(max_length=255,null=True)
> weeks_per_year = models.CharField(max_length=255,null=True)
> active_flag = models.BooleanField(default=True)
> show_flag = models.BooleanField(default=True)
> created_at = models.DateTimeField(auto_now_add = True)
> updated_at = models.DateTimeField(auto_now=True)
>
> def __str__(self):
> return self.region_name
>
>
> views.py
>
> def center(request):
> locations = Locations.objects.select_related('region')
> td_serializer = LocationSerializer(locations,many=True)
> x=td_serializer.data
> data = {
> 'td':td_serializer.data,
> #'centers':center_serializer.data,
> } 
> return response.Response(data,status.HTTP_200_OK)
>
>
>
>
> template:
>
> fetchLocationsList(){
> this.$axios.$post('/projects/chcenter',config).then(response => {
> if(response){
> this.locations =response.td;
> for(let i=0;i  this.x=this.locations[i].name
> this.y=this.locations[i].region
> this.z=this.y + "-" +this.x
> this.result.push(this.z)
>
>
> How to get region_name ?
>
>
>
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/be86acab-55f2-4ce2-a1b5-930b1b5c77aen%40googlegroups.com.


Re: Static files is not loading while deploying the project to AWS ec2

2022-11-07 Thread James
It sounds like nginx doesn't know where your static files are being served 
from. If you don't want to bother with NGINX you can use Whitenoise.

Django doesn't serve staticfiles in production; something that isn't overly 
apparent. You still need something like apache or nginx or whitenoise to 
serve static files in production.

On Saturday, November 5, 2022 at 1:35:31 AM UTC-6 nishan...@gmail.com wrote:

> Hi all,
>
> I deployed the django project to AWS ec2 instance using nginx and gunicorn 
> but the static file is not loading at all.
>
> Can someone suggest where did I do wrong?
>
> Note - I've not created Profile before deploying 
>
> Here is my settings.py file
> STATIC_URL = 'static/'
> STATIC_ROOT = os.path.join(BASE_DIR, 'staticfiles')
> STATICFILES_DIRS = (os.path.join(BASE_DIR, 'static'),)
>
> Project URl - http://54.242.38.208/
> Github- https://github.com/Nishant-Sagar/BaskinSolar
>
> Thank you for your help,
> Nishant
>
>
>
>
>
>
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/b2af5c41-3202-4bd4-b195-777a80f144e1n%40googlegroups.com.


Re: Hi need a solution

2022-11-07 Thread 'Kasper Laudrup' via Django users

On 07/11/2022 08.20, Mh Raffi wrote:


I have deployed to post g res p g admin4 and deleted db. s q lite from 
Django. and set my allowed host =['*']


Am getting server [500].

if any help will be appreciated



You need to look in your log files to find the cause of the 500 error. 
That will make it much, much easier to debug.


Maybe have a look here:
https://docs.djangoproject.com/en/4.1/topics/logging/

Kind regards,
Kasper Laudrup

--
You received this message because you are subscribed to the Google Groups "Django 
users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/48520f6c-5f5b-7bd2-1d2f-f3076510968a%40stacktrace.dk.


OpenPGP_0xE5D9CAC64AAA55EB.asc
Description: OpenPGP public key


OpenPGP_signature
Description: OpenPGP digital signature


Re: Hi need a solution

2022-11-07 Thread kateregga julius
First check the spelling of your user.

If it fails take a screenshot of what is played in your console.
It will help in getting for your a clear response

On Mon, Nov 7, 2022, 7:08 PM Mh Raffi  wrote:

>
> I have deployed to post g res p g admin4 and deleted db. s q lite from
> Django. and set my allowed host =['*']
>
> Am getting server [500].
>
> if any help will be appreciated
>
> need a solution after deleting s q .lite d b from Django project and used
> allowed host to * .
>
> am getting 500 server request. LOOKING FOR SOLUTION AM NEW TO DJANGO
>
> DEBUG = False ALLOWED_HOSTS = ['*']
>
> DATABASES = { 'default': {
>
> 'ENGINE': 'django.db.backends.postgresql_psycopg2',
> 'NAME': 'accerla',
> 'USER' : 'post g res',
> 'PASSWORD': 'pwd3',
> 'HOST' : 'localhost',
> 'PORT' : '5432',
> }
>
> }
> [07/Nov/2022 05:14:06] INFO [django.utils.autoreload:677] Watching for
> file changes with StatReloader
> [07/Nov/2022 05:14:06] DEBUG [django.utils.autoreload:330] Waiting for
> apps ready_event.
> [07/Nov/2022 05:14:06] DEBUG [django.utils.autoreload:342] Apps
> ready_event triggered. Sending autoreload_started signal.
> [07/Nov/2022 05:14:06] DEBUG [django.utils.autoreload:296] Watching dir
> C:\Users\Admin\Desktop\webappstudioz\templates with glob **/*.
> any suggestion would be appreciated
>
> Thanks & Regards
> Mohammed Raffi.J
>
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAKfPRhUJhovCY8D3pNAzR6hHZWCR35FUGWyt7vE7WNXMTPzn%3Dw%40mail.gmail.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAMVv_-HRNV0xBM4cPbEc9dkr_Xn%3D6E0-0VF4U0M9x%2BfaEPZKTA%40mail.gmail.com.


Re: Multitenant App

2022-11-07 Thread Sherif Adigun
Take a look at Django Tenants

https://github.com/django-tenants/django-tenants

I have used it on a project and its just perfect. it does tenancy very 
well. and I like the Semi Isolated Approach: Shared Database, Separate 
Schemas. One database for all tenants, but one schema per tenant.

On Monday, November 7, 2022 at 5:08:32 PM UTC+1 davidemanu...@gmail.com 
wrote:

> Hi, I'm not sure what you mean by updating all templates. In my case, when 
> I update a template, the changes are reflected in all tenants/clients.
> David Emanuel Sandoval 
> 
> WEB DEVELOPER
> +549 3734 607102 <+54%209%203734%2060-7102>
>
>    
> 
>
>
>
>
>
> El lun, 7 nov 2022 a las 11:20, sebasti...@gmail.com (<
> sebasti...@gmail.com>) escribió:
>
>> Hello,
>>
>> ich want sell my app on different companys. Now a part of apps all 
>> companys/templates use this but another apps/templates are customer 
>> specific. Now i want when i update code from apps/templates which all 
>> customer uses that i can update all customer on server as fast as possible.
>>
>> Here are a example:
>>
>> Customer 1
>> common app
>> customer invividual app #1
>> 
>> template
>> common app templates
>> customer individual app templates
>> Customer 2
>> common app
>> customer individual app #2
>>
>> template
>> common app templates
>> customer individual app templates
>>
>> How i can make this? Softlink or is there another better possibility?
>>
>> Regards
>>
>> -- 
>> You received this message because you are subscribed to the Google Groups 
>> "Django users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to django-users...@googlegroups.com.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/django-users/987d7c53-cd73-4937-9a5d-b9053a6570c4n%40googlegroups.com
>>  
>> 
>> .
>>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/6643d636-bf3b-4fad-80fc-6f3a8f1d66cbn%40googlegroups.com.


Re: Looking for available support to start a School Management Application

2022-11-07 Thread Sherif Adigun
One of the most popular School Management System in Django is 

https://github.com/adigunsherif/Django-School-Management-System


You can fork it and contribute your code. We can collaborate
On Monday, November 7, 2022 at 5:08:32 PM UTC+1 hajira.f...@gmail.com wrote:

> Hi,
>
> I'm interested to collaborate.
>
> Regards,
> Hajira Fathima
>
> On Monday, 7 November 2022 at 02:04:21 UTC+4 nef wrote:
>
>> Hi everyone,
>> I am beginer in Django, not much experience.
>> I have been task to develop an application for school management 
>> (Admission, Registration,  Attendance, Report marks, and more functions).
>> I am wondering if there is an existing open smilare app or something 
>> which can be use as baseline to start or guide me with best practices.
>> Thank you
>> Eric
>>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/ffce34f1-83fb-42ec-946e-2678de94aea0n%40googlegroups.com.


Re: Django multistep form

2022-11-07 Thread Watson Cyrus Anikwai
Following this as well.

On Mon, 7 Nov 2022, 8:59 pm Obodoma Uzondu Vincent, 
wrote:

> I have a multi-step form that is 3 steps but it has 4 forms. In the first
> form, the user has to choose from two choices. The user’s first form
> choices will determine the next form that will be displayed.
> The code is not working as it should. The first form choices are radio
> buttons which are commercial and private. If the user chooses commercial it
> brings the next form and if the user chose private it brings a different
> form. My problem is that if the user chose private or commercial it brings
> the same form.
> Views.py
> template
> forms.py
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/f3fc2a20-0bea-4ba2-a9a2-c916ffec8ff7n%40googlegroups.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAHFzYq6_-9QY8h-hAcS3_sBvfKa3MH0tHksmOdW8aTOwd26AuA%40mail.gmail.com.


Hi need a solution

2022-11-07 Thread Mh Raffi
I have deployed to post g res p g admin4 and deleted db. s q lite from
Django. and set my allowed host =['*']

Am getting server [500].

if any help will be appreciated

need a solution after deleting s q .lite d b from Django project and used
allowed host to * .

am getting 500 server request. LOOKING FOR SOLUTION AM NEW TO DJANGO

DEBUG = False ALLOWED_HOSTS = ['*']

DATABASES = { 'default': {

'ENGINE': 'django.db.backends.postgresql_psycopg2',
'NAME': 'accerla',
'USER' : 'post g res',
'PASSWORD': 'pwd3',
'HOST' : 'localhost',
'PORT' : '5432',
}

}
[07/Nov/2022 05:14:06] INFO [django.utils.autoreload:677] Watching for file
changes with StatReloader
[07/Nov/2022 05:14:06] DEBUG [django.utils.autoreload:330] Waiting for apps
ready_event.
[07/Nov/2022 05:14:06] DEBUG [django.utils.autoreload:342] Apps ready_event
triggered. Sending autoreload_started signal.
[07/Nov/2022 05:14:06] DEBUG [django.utils.autoreload:296] Watching dir
C:\Users\Admin\Desktop\webappstudioz\templates with glob **/*.
any suggestion would be appreciated

Thanks & Regards
Mohammed Raffi.J

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAKfPRhUJhovCY8D3pNAzR6hHZWCR35FUGWyt7vE7WNXMTPzn%3Dw%40mail.gmail.com.


Re: Looking for available support to start a School Management Application

2022-11-07 Thread Hajira Fathima
Hi,

I'm interested to collaborate.

Regards,
Hajira Fathima

On Monday, 7 November 2022 at 02:04:21 UTC+4 nef wrote:

> Hi everyone,
> I am beginer in Django, not much experience.
> I have been task to develop an application for school management 
> (Admission, Registration,  Attendance, Report marks, and more functions).
> I am wondering if there is an existing open smilare app or something which 
> can be use as baseline to start or guide me with best practices.
> Thank you
> Eric
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/c303722e-c67e-4672-b913-ff38d811facdn%40googlegroups.com.


Re: Multitenant App

2022-11-07 Thread David Emanuel Sandoval
Hi, I'm not sure what you mean by updating all templates. In my case, when
I update a template, the changes are reflected in all tenants/clients.
David Emanuel Sandoval 
WEB DEVELOPER
+549 3734 607102








El lun, 7 nov 2022 a las 11:20, sebasti...@gmail.com (<
sebastian.ju...@gmail.com>) escribió:

> Hello,
>
> ich want sell my app on different companys. Now a part of apps all
> companys/templates use this but another apps/templates are customer
> specific. Now i want when i update code from apps/templates which all
> customer uses that i can update all customer on server as fast as possible.
>
> Here are a example:
>
> Customer 1
> common app
> customer invividual app #1
>
> template
> common app templates
> customer individual app templates
> Customer 2
> common app
> customer individual app #2
>
> template
> common app templates
> customer individual app templates
>
> How i can make this? Softlink or is there another better possibility?
>
> Regards
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/987d7c53-cd73-4937-9a5d-b9053a6570c4n%40googlegroups.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAHUWMCbz%2BUPUJZot1rvjsWROgVZR506We95iDAkmz7ehj6tCSQ%40mail.gmail.com.


calling the same app multiple times

2022-11-07 Thread john fabiani

Hi,

Django newbie question.

I have a desktop application that I would like to move to the web.  The 
CRUD desktop app is written in python using wxPython. On the desktop app 
the user can open the same form/window multiple times.  I would like to 
know if I can do the same thing with Django.  My research has not left 
me with a lot of confidence that it can be done.  I did see one thread 
that suggested that it could be done by passing a new namespace.  But 
that confused me.  All the demo's show that a URL is fixed.


If it can be done - are there any examples I can view?  If Django is 
unable to do it (or it would be to difficult) does anyone have a 
suggestion on other tech that might work and still work on the web.



Johnf


--
You received this message because you are subscribed to the Google Groups "Django 
users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/3330e76b-2444-b774-dcda-d2eac5975d3f%40jfcomputer.com.


Re: Looking for available support to start a School Management Application

2022-11-07 Thread 'Steven Mapes' via Django users
I'd be very reluctant to use existing OS projects for such a project unless 
they have proven security and a strong policy in place as you're talking 
about handling sensitive data.

You should also double check with the school what license requirements they 
have as many will not allow 3rd party packages to be included for security 
or IP reasons.



On Monday, 7 November 2022 at 14:09:30 UTC julika...@gmail.com wrote:

> You have to do it yourself
> Not cloning an existing project on GitHub
> This will help you deburg the code yourself 
>
> On Mon, Nov 7, 2022, 5:03 PM Milson Munakami  wrote:
>
>> You can give it a try, my open sourced side project: 
>> https://github.com/Milstein/Student_Management_System
>>
>> On Mon, Nov 7, 2022 at 4:48 AM Eric Francis  wrote:
>>
>>> Many thanks for all your feedback.
>>> I will share details on what has been requested and the level of what I 
>>> have done so far.
>>> Thank you
>>>
>>> Eric
>>>
>>> On Mon, 7 Nov 2022, 12:33 kateregga julius,  wrote:
>>>
 Before starting on the system.
 Do information gathering,
 Design your database schema. 
  (Visual paradigm)
 Then set your development environment 

 On Mon, Nov 7, 2022, 11:44 AM Adekola Aderonmu  
 wrote:

> I am also interested  in collaborating with you. 
>
> On Mon, 7 Nov 2022, 06:37 DJANGO DEVELOPER,  
> wrote:
>
>> Are you looking for a paid support?
>>
>> On Mon, 7 Nov 2022, 9:41 am ritik sahoo,  wrote:
>>
>>> I have 
>>>
>>> On Mon, 7 Nov, 2022, 5:34 am Makrand,  wrote:
>>>
 I have developed School management system. I am interested to 
 complete support.

 On Mon, Nov 7, 2022, 4:27 AM Ahmed omar miladi <
 ahmedom...@gmail.com> wrote:

> hello frncseric i'm ahmed omar miladi i'm full stack developer and 
> django specialist i build a platform with name is allcarta check 
> https://www.allcarta.com and i can help you to build a 
> school management system
>
> On Sun, 6 Nov 2022 at 23:05, nef  wrote:
>
>> Hi everyone,
>> I am beginer in Django, not much experience.
>> I have been task to develop an application for school management 
>> (Admission, Registration,  Attendance, Report marks, and more 
>> functions).
>> I am wondering if there is an existing open smilare app or 
>> something which can be use as baseline to start or guide me with 
>> best 
>> practices.
>> Thank you
>> Eric
>>
>> -- 
>> You received this message because you are subscribed to the 
>> Google Groups "Django users" group.
>> To unsubscribe from this group and stop receiving emails from it, 
>> send an email to django-users...@googlegroups.com.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/django-users/176ec5a0-2e00-4f53-b5c3-1bfc72f3aa94n%40googlegroups.com
>>  
>> 
>> .
>>
> -- 
> You received this message because you are subscribed to the Google 
> Groups "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, 
> send an email to django-users...@googlegroups.com.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/django-users/CAE3Dc2PkKJUF19fSykG%2BAmYByW6MY49UW%3DHSiKEL%2BPnZ6CHrvA%40mail.gmail.com
>  
> 
> .
>
 -- 
 You received this message because you are subscribed to the Google 
 Groups "Django users" group.
 To unsubscribe from this group and stop receiving emails from it, 
 send an email to django-users...@googlegroups.com.
 To view this discussion on the web visit 
 https://groups.google.com/d/msgid/django-users/CAA_ekM%2BRQKYixBpZnZzYaN9cE9ete_PpPX%2BVJEj3e%2B%2BK2jktbQ%40mail.gmail.com
  
 
 .

>>> -- 
>>> You received this message because you are subscribed to the Google 
>>> Groups "Django users" group.
>>> To unsubscribe from this group and stop receiving emails from it, 
>>> send an email to django-users...@googlegroups.com.
>>> To view this discussion on the web visit 
>>> https://groups.google.com/d/msgid/django-users/CAJwehCvV8YkQXf5y5AM_OGTH0vmv_f_kuHyTq7K0p_HyKG3-Sg%40mail.gmail.com
>>>  
>>> 

Multitenant App

2022-11-07 Thread sebasti...@gmail.com
Hello,

ich want sell my app on different companys. Now a part of apps all 
companys/templates use this but another apps/templates are customer 
specific. Now i want when i update code from apps/templates which all 
customer uses that i can update all customer on server as fast as possible.

Here are a example:

Customer 1
common app
customer invividual app #1

template
common app templates
customer individual app templates
Customer 2
common app
customer individual app #2

template
common app templates
customer individual app templates

How i can make this? Softlink or is there another better possibility?

Regards

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/987d7c53-cd73-4937-9a5d-b9053a6570c4n%40googlegroups.com.


Re: Looking for available support to start a School Management Application

2022-11-07 Thread kateregga julius
You have to do it yourself
Not cloning an existing project on GitHub
This will help you deburg the code yourself

On Mon, Nov 7, 2022, 5:03 PM Milson Munakami  wrote:

> You can give it a try, my open sourced side project:
> https://github.com/Milstein/Student_Management_System
>
> On Mon, Nov 7, 2022 at 4:48 AM Eric Francis  wrote:
>
>> Many thanks for all your feedback.
>> I will share details on what has been requested and the level of what I
>> have done so far.
>> Thank you
>>
>> Eric
>>
>> On Mon, 7 Nov 2022, 12:33 kateregga julius, 
>> wrote:
>>
>>> Before starting on the system.
>>> Do information gathering,
>>> Design your database schema.
>>>  (Visual paradigm)
>>> Then set your development environment
>>>
>>> On Mon, Nov 7, 2022, 11:44 AM Adekola Aderonmu 
>>> wrote:
>>>
 I am also interested  in collaborating with you.

 On Mon, 7 Nov 2022, 06:37 DJANGO DEVELOPER, 
 wrote:

> Are you looking for a paid support?
>
> On Mon, 7 Nov 2022, 9:41 am ritik sahoo, 
> wrote:
>
>> I have
>>
>> On Mon, 7 Nov, 2022, 5:34 am Makrand,  wrote:
>>
>>> I have developed School management system. I am interested to
>>> complete support.
>>>
>>> On Mon, Nov 7, 2022, 4:27 AM Ahmed omar miladi <
>>> ahmedomarmil...@gmail.com> wrote:
>>>
 hello frncseric i'm ahmed omar miladi i'm full stack developer and
 django specialist i build a platform with name is allcarta check
 https://www.allcarta.com and i can help you to build a
 school management system

 On Sun, 6 Nov 2022 at 23:05, nef  wrote:

> Hi everyone,
> I am beginer in Django, not much experience.
> I have been task to develop an application for school management
> (Admission, Registration,  Attendance, Report marks, and more 
> functions).
> I am wondering if there is an existing open smilare app or
> something which can be use as baseline to start or guide me with best
> practices.
> Thank you
> Eric
>
> --
> You received this message because you are subscribed to the Google
> Groups "Django users" group.
> To unsubscribe from this group and stop receiving emails from it,
> send an email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/176ec5a0-2e00-4f53-b5c3-1bfc72f3aa94n%40googlegroups.com
> 
> .
>
 --
 You received this message because you are subscribed to the Google
 Groups "Django users" group.
 To unsubscribe from this group and stop receiving emails from it,
 send an email to django-users+unsubscr...@googlegroups.com.
 To view this discussion on the web visit
 https://groups.google.com/d/msgid/django-users/CAE3Dc2PkKJUF19fSykG%2BAmYByW6MY49UW%3DHSiKEL%2BPnZ6CHrvA%40mail.gmail.com
 
 .

>>> --
>>> You received this message because you are subscribed to the Google
>>> Groups "Django users" group.
>>> To unsubscribe from this group and stop receiving emails from it,
>>> send an email to django-users+unsubscr...@googlegroups.com.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/django-users/CAA_ekM%2BRQKYixBpZnZzYaN9cE9ete_PpPX%2BVJEj3e%2B%2BK2jktbQ%40mail.gmail.com
>>> 
>>> .
>>>
>> --
>> You received this message because you are subscribed to the Google
>> Groups "Django users" group.
>> To unsubscribe from this group and stop receiving emails from it,
>> send an email to django-users+unsubscr...@googlegroups.com.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/CAJwehCvV8YkQXf5y5AM_OGTH0vmv_f_kuHyTq7K0p_HyKG3-Sg%40mail.gmail.com
>> 
>> .
>>
> --
> You received this message because you are subscribed to the Google
> Groups "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send
> an email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> 

Re: Looking for available support to start a School Management Application

2022-11-07 Thread Milson Munakami
You can give it a try, my open sourced side project:
https://github.com/Milstein/Student_Management_System

On Mon, Nov 7, 2022 at 4:48 AM Eric Francis  wrote:

> Many thanks for all your feedback.
> I will share details on what has been requested and the level of what I
> have done so far.
> Thank you
>
> Eric
>
> On Mon, 7 Nov 2022, 12:33 kateregga julius, 
> wrote:
>
>> Before starting on the system.
>> Do information gathering,
>> Design your database schema.
>>  (Visual paradigm)
>> Then set your development environment
>>
>> On Mon, Nov 7, 2022, 11:44 AM Adekola Aderonmu 
>> wrote:
>>
>>> I am also interested  in collaborating with you.
>>>
>>> On Mon, 7 Nov 2022, 06:37 DJANGO DEVELOPER, 
>>> wrote:
>>>
 Are you looking for a paid support?

 On Mon, 7 Nov 2022, 9:41 am ritik sahoo, 
 wrote:

> I have
>
> On Mon, 7 Nov, 2022, 5:34 am Makrand,  wrote:
>
>> I have developed School management system. I am interested to
>> complete support.
>>
>> On Mon, Nov 7, 2022, 4:27 AM Ahmed omar miladi <
>> ahmedomarmil...@gmail.com> wrote:
>>
>>> hello frncseric i'm ahmed omar miladi i'm full stack developer and
>>> django specialist i build a platform with name is allcarta check
>>> https://www.allcarta.com and i can help you to build a
>>> school management system
>>>
>>> On Sun, 6 Nov 2022 at 23:05, nef  wrote:
>>>
 Hi everyone,
 I am beginer in Django, not much experience.
 I have been task to develop an application for school management
 (Admission, Registration,  Attendance, Report marks, and more 
 functions).
 I am wondering if there is an existing open smilare app or
 something which can be use as baseline to start or guide me with best
 practices.
 Thank you
 Eric

 --
 You received this message because you are subscribed to the Google
 Groups "Django users" group.
 To unsubscribe from this group and stop receiving emails from it,
 send an email to django-users+unsubscr...@googlegroups.com.
 To view this discussion on the web visit
 https://groups.google.com/d/msgid/django-users/176ec5a0-2e00-4f53-b5c3-1bfc72f3aa94n%40googlegroups.com
 
 .

>>> --
>>> You received this message because you are subscribed to the Google
>>> Groups "Django users" group.
>>> To unsubscribe from this group and stop receiving emails from it,
>>> send an email to django-users+unsubscr...@googlegroups.com.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/django-users/CAE3Dc2PkKJUF19fSykG%2BAmYByW6MY49UW%3DHSiKEL%2BPnZ6CHrvA%40mail.gmail.com
>>> 
>>> .
>>>
>> --
>> You received this message because you are subscribed to the Google
>> Groups "Django users" group.
>> To unsubscribe from this group and stop receiving emails from it,
>> send an email to django-users+unsubscr...@googlegroups.com.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/CAA_ekM%2BRQKYixBpZnZzYaN9cE9ete_PpPX%2BVJEj3e%2B%2BK2jktbQ%40mail.gmail.com
>> 
>> .
>>
> --
> You received this message because you are subscribed to the Google
> Groups "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send
> an email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAJwehCvV8YkQXf5y5AM_OGTH0vmv_f_kuHyTq7K0p_HyKG3-Sg%40mail.gmail.com
> 
> .
>
 --
 You received this message because you are subscribed to the Google
 Groups "Django users" group.
 To unsubscribe from this group and stop receiving emails from it, send
 an email to django-users+unsubscr...@googlegroups.com.
 To view this discussion on the web visit
 https://groups.google.com/d/msgid/django-users/CAKPY9pnVbYxmp%3DOq%2BbNtRXKJhy78jnzozkFn5VMnn%3DKcUTZ6Gw%40mail.gmail.com
 
 .

>>> --
>>> You received this message because you are subscribed to the Google
>>> Groups 

Django multistep form

2022-11-07 Thread Obodoma Uzondu Vincent
I have a multi-step form that is 3 steps but it has 4 forms. In the first 
form, the user has to choose from two choices. The user’s first form 
choices will determine the next form that will be displayed.
The code is not working as it should. The first form choices are radio 
buttons which are commercial and private. If the user chooses commercial it 
brings the next form and if the user chose private it brings a different 
form. My problem is that if the user chose private or commercial it brings 
the same form.
Views.py
template
forms.py

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/f3fc2a20-0bea-4ba2-a9a2-c916ffec8ff7n%40googlegroups.com.


Re: Looking for available support to start a School Management Application

2022-11-07 Thread Eric Francis
Many thanks for all your feedback.
I will share details on what has been requested and the level of what I
have done so far.
Thank you

Eric

On Mon, 7 Nov 2022, 12:33 kateregga julius,  wrote:

> Before starting on the system.
> Do information gathering,
> Design your database schema.
>  (Visual paradigm)
> Then set your development environment
>
> On Mon, Nov 7, 2022, 11:44 AM Adekola Aderonmu 
> wrote:
>
>> I am also interested  in collaborating with you.
>>
>> On Mon, 7 Nov 2022, 06:37 DJANGO DEVELOPER, 
>> wrote:
>>
>>> Are you looking for a paid support?
>>>
>>> On Mon, 7 Nov 2022, 9:41 am ritik sahoo, 
>>> wrote:
>>>
 I have

 On Mon, 7 Nov, 2022, 5:34 am Makrand,  wrote:

> I have developed School management system. I am interested to complete
> support.
>
> On Mon, Nov 7, 2022, 4:27 AM Ahmed omar miladi <
> ahmedomarmil...@gmail.com> wrote:
>
>> hello frncseric i'm ahmed omar miladi i'm full stack developer and
>> django specialist i build a platform with name is allcarta check
>> https://www.allcarta.com and i can help you to build a
>> school management system
>>
>> On Sun, 6 Nov 2022 at 23:05, nef  wrote:
>>
>>> Hi everyone,
>>> I am beginer in Django, not much experience.
>>> I have been task to develop an application for school management
>>> (Admission, Registration,  Attendance, Report marks, and more 
>>> functions).
>>> I am wondering if there is an existing open smilare app or something
>>> which can be use as baseline to start or guide me with best practices.
>>> Thank you
>>> Eric
>>>
>>> --
>>> You received this message because you are subscribed to the Google
>>> Groups "Django users" group.
>>> To unsubscribe from this group and stop receiving emails from it,
>>> send an email to django-users+unsubscr...@googlegroups.com.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/django-users/176ec5a0-2e00-4f53-b5c3-1bfc72f3aa94n%40googlegroups.com
>>> 
>>> .
>>>
>> --
>> You received this message because you are subscribed to the Google
>> Groups "Django users" group.
>> To unsubscribe from this group and stop receiving emails from it,
>> send an email to django-users+unsubscr...@googlegroups.com.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/CAE3Dc2PkKJUF19fSykG%2BAmYByW6MY49UW%3DHSiKEL%2BPnZ6CHrvA%40mail.gmail.com
>> 
>> .
>>
> --
> You received this message because you are subscribed to the Google
> Groups "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send
> an email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAA_ekM%2BRQKYixBpZnZzYaN9cE9ete_PpPX%2BVJEj3e%2B%2BK2jktbQ%40mail.gmail.com
> 
> .
>
 --
 You received this message because you are subscribed to the Google
 Groups "Django users" group.
 To unsubscribe from this group and stop receiving emails from it, send
 an email to django-users+unsubscr...@googlegroups.com.
 To view this discussion on the web visit
 https://groups.google.com/d/msgid/django-users/CAJwehCvV8YkQXf5y5AM_OGTH0vmv_f_kuHyTq7K0p_HyKG3-Sg%40mail.gmail.com
 
 .

>>> --
>>> You received this message because you are subscribed to the Google
>>> Groups "Django users" group.
>>> To unsubscribe from this group and stop receiving emails from it, send
>>> an email to django-users+unsubscr...@googlegroups.com.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/django-users/CAKPY9pnVbYxmp%3DOq%2BbNtRXKJhy78jnzozkFn5VMnn%3DKcUTZ6Gw%40mail.gmail.com
>>> 
>>> .
>>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Django users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to django-users+unsubscr...@googlegroups.com.
>> To view this discussion on the web visit
>> 

Re: Looking for available support to start a School Management Application

2022-11-07 Thread kateregga julius
Before starting on the system.
Do information gathering,
Design your database schema.
 (Visual paradigm)
Then set your development environment

On Mon, Nov 7, 2022, 11:44 AM Adekola Aderonmu  wrote:

> I am also interested  in collaborating with you.
>
> On Mon, 7 Nov 2022, 06:37 DJANGO DEVELOPER, 
> wrote:
>
>> Are you looking for a paid support?
>>
>> On Mon, 7 Nov 2022, 9:41 am ritik sahoo,  wrote:
>>
>>> I have
>>>
>>> On Mon, 7 Nov, 2022, 5:34 am Makrand,  wrote:
>>>
 I have developed School management system. I am interested to complete
 support.

 On Mon, Nov 7, 2022, 4:27 AM Ahmed omar miladi <
 ahmedomarmil...@gmail.com> wrote:

> hello frncseric i'm ahmed omar miladi i'm full stack developer and
> django specialist i build a platform with name is allcarta check
> https://www.allcarta.com and i can help you to build a
> school management system
>
> On Sun, 6 Nov 2022 at 23:05, nef  wrote:
>
>> Hi everyone,
>> I am beginer in Django, not much experience.
>> I have been task to develop an application for school management
>> (Admission, Registration,  Attendance, Report marks, and more functions).
>> I am wondering if there is an existing open smilare app or something
>> which can be use as baseline to start or guide me with best practices.
>> Thank you
>> Eric
>>
>> --
>> You received this message because you are subscribed to the Google
>> Groups "Django users" group.
>> To unsubscribe from this group and stop receiving emails from it,
>> send an email to django-users+unsubscr...@googlegroups.com.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/176ec5a0-2e00-4f53-b5c3-1bfc72f3aa94n%40googlegroups.com
>> 
>> .
>>
> --
> You received this message because you are subscribed to the Google
> Groups "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send
> an email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAE3Dc2PkKJUF19fSykG%2BAmYByW6MY49UW%3DHSiKEL%2BPnZ6CHrvA%40mail.gmail.com
> 
> .
>
 --
 You received this message because you are subscribed to the Google
 Groups "Django users" group.
 To unsubscribe from this group and stop receiving emails from it, send
 an email to django-users+unsubscr...@googlegroups.com.
 To view this discussion on the web visit
 https://groups.google.com/d/msgid/django-users/CAA_ekM%2BRQKYixBpZnZzYaN9cE9ete_PpPX%2BVJEj3e%2B%2BK2jktbQ%40mail.gmail.com
 
 .

>>> --
>>> You received this message because you are subscribed to the Google
>>> Groups "Django users" group.
>>> To unsubscribe from this group and stop receiving emails from it, send
>>> an email to django-users+unsubscr...@googlegroups.com.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/django-users/CAJwehCvV8YkQXf5y5AM_OGTH0vmv_f_kuHyTq7K0p_HyKG3-Sg%40mail.gmail.com
>>> 
>>> .
>>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Django users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to django-users+unsubscr...@googlegroups.com.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/CAKPY9pnVbYxmp%3DOq%2BbNtRXKJhy78jnzozkFn5VMnn%3DKcUTZ6Gw%40mail.gmail.com
>> 
>> .
>>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CA%2BGpPKxqT5eyE8ygC1dBLdOPRf-JhoN7uPoqqcoybgccgvrfTw%40mail.gmail.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this 

Re: Looking for available support to start a School Management Application

2022-11-07 Thread Adekola Aderonmu
I am also interested  in collaborating with you.

On Mon, 7 Nov 2022, 06:37 DJANGO DEVELOPER,  wrote:

> Are you looking for a paid support?
>
> On Mon, 7 Nov 2022, 9:41 am ritik sahoo,  wrote:
>
>> I have
>>
>> On Mon, 7 Nov, 2022, 5:34 am Makrand,  wrote:
>>
>>> I have developed School management system. I am interested to complete
>>> support.
>>>
>>> On Mon, Nov 7, 2022, 4:27 AM Ahmed omar miladi <
>>> ahmedomarmil...@gmail.com> wrote:
>>>
 hello frncseric i'm ahmed omar miladi i'm full stack developer and
 django specialist i build a platform with name is allcarta check
 https://www.allcarta.com and i can help you to build a
 school management system

 On Sun, 6 Nov 2022 at 23:05, nef  wrote:

> Hi everyone,
> I am beginer in Django, not much experience.
> I have been task to develop an application for school management
> (Admission, Registration,  Attendance, Report marks, and more functions).
> I am wondering if there is an existing open smilare app or something
> which can be use as baseline to start or guide me with best practices.
> Thank you
> Eric
>
> --
> You received this message because you are subscribed to the Google
> Groups "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send
> an email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/176ec5a0-2e00-4f53-b5c3-1bfc72f3aa94n%40googlegroups.com
> 
> .
>
 --
 You received this message because you are subscribed to the Google
 Groups "Django users" group.
 To unsubscribe from this group and stop receiving emails from it, send
 an email to django-users+unsubscr...@googlegroups.com.
 To view this discussion on the web visit
 https://groups.google.com/d/msgid/django-users/CAE3Dc2PkKJUF19fSykG%2BAmYByW6MY49UW%3DHSiKEL%2BPnZ6CHrvA%40mail.gmail.com
 
 .

>>> --
>>> You received this message because you are subscribed to the Google
>>> Groups "Django users" group.
>>> To unsubscribe from this group and stop receiving emails from it, send
>>> an email to django-users+unsubscr...@googlegroups.com.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/django-users/CAA_ekM%2BRQKYixBpZnZzYaN9cE9ete_PpPX%2BVJEj3e%2B%2BK2jktbQ%40mail.gmail.com
>>> 
>>> .
>>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Django users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to django-users+unsubscr...@googlegroups.com.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/CAJwehCvV8YkQXf5y5AM_OGTH0vmv_f_kuHyTq7K0p_HyKG3-Sg%40mail.gmail.com
>> 
>> .
>>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAKPY9pnVbYxmp%3DOq%2BbNtRXKJhy78jnzozkFn5VMnn%3DKcUTZ6Gw%40mail.gmail.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CA%2BGpPKxqT5eyE8ygC1dBLdOPRf-JhoN7uPoqqcoybgccgvrfTw%40mail.gmail.com.