Re: Re : Need help in django database related

2021-10-14 Thread Richard Dushime
i Think using Django  u will create models then register  them in admin,
 for saving data /registration  u will create a form that will be posting
data  in database  may be u can add in an email scripts if u want to always
be aware of who has registered for an event

On Wed, Oct 13, 2021 at 8:37 PM Avi shah  wrote:

> I want to build an platform where admin can add events and I want end
> users to register for that event , so how do I save the
> data/registration of the user for that particular event , how can i create
> dynamic tables like 1 table for 1 event or is there some other logic behind
> it?
>
> Thanks in advance
>
> --
> 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/CALa7AFPNK_KTJvDERYXmi_RG9_xq58EjiBAH7PsOcL0gCFHDYg%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/CAJCm56JivJajSaa-KihmRA1VYajHmVN5vbTZKp6e%3D_bUx%2BONtQ%40mail.gmail.com.


Re: Greetings to Everyone

2021-09-18 Thread Richard Dushime
Thanks for the help it worked

On Wed, Sep 15, 2021 at 4:58 PM MR INDIA  wrote:

> Jinja 2 is quite different from django templates and you need to use .
> Jinja file extension. And configure it. And pls send GitHub link, and is
> there any error log or Trace back then send it.
> On Wednesday, 15 September 2021 at 18:52:10 UTC+5:30 faruk...@gmail.com
> wrote:
>
>> Hello,
>> Could you please upload your code to GitHub or some other platform ? It
>> is really hard to read and track the code.
>>
>> 15 Eylül 2021 Çarşamba tarihinde saat 15:05:48 UTC+3 itibarıyla
>> mudahe...@gmail.com şunları yazdı:
>>
>>> i kindly need a help  i am making a static website into dynamic using
>>> Python Django and postgresql as my database
>>> i created models then i went in admin to register them then views to
>>> create the function  after i went into html code to put the jijna format so
>>> that it can display at the end i made migrations and it accepted very well
>>> 1 for home vieuw it accepting and display all the contents
>>> 2-- the problem comes to the second pages about us  that is where no
>>> content is being displayed but the content is all well in admin panel
>>> django site administration  i can add data but it can not display on about
>>> page
>>> i am kindly asking for help  Down is all the files necessary
>>> Here is my models
>>> from django.db import models
>>> from django.db.models.fields import CharField, DateField
>>> from django.db.models.fields.files import ImageField
>>>
>>> # Create your models here.
>>> # slide show models
>>> class home_slide(models.Model):
>>>
>>> s_title = models.CharField(max_length=100)
>>> s_description = models.TextField(max_length=150)
>>> s_button = models.CharField(max_length=20)
>>> s_image = ImageField(upload_to = 'media')
>>>
>>> class Meta():
>>> ordering = ("s_button","s_title","s_description")
>>>
>>> def __str__(self):
>>> return f"{self.s_title},{self.s_description},{self.s_button}"
>>>
>>> # index -- course categories models
>>>
>>> # short courses
>>>
>>> class shortcourse(models.Model):
>>> sc_title = models.CharField(max_length=50)
>>> sc_description = models.TextField(max_length=300)
>>> sc_image = models.ImageField(upload_to = 'media')
>>> sc_button = models.CharField(max_length=20)
>>>
>>> def __str__(self):
>>> return f"{self.sc_title},
>>> {self.sc_description},{self.sc_image},{self.sc_button}"
>>>
>>>
>>> #testimonials
>>>
>>> class testimonial(models.Model):
>>> t_name = models.CharField(max_length=50)
>>> t_categorie = models.CharField(max_length=20)
>>> t_quote = models.TextField(max_length=300)
>>> t_image = models.ImageField(upload_to='media/testimonials')
>>>
>>> def __str__(self):
>>> return f"{self.t_name},
>>> {self.t_categorie},{self.t_quote},{self.t_image}"
>>>
>>> #publications and news
>>>
>>> class publication(models.Model):
>>> p_date = models.DateField()
>>> p_title = models.CharField(max_length=200)
>>> p_description = models.TextField(max_length=400)
>>> p_button = models.CharField(max_length=15)
>>>
>>> def __str__(self):
>>> return f"{self.p_date}, {self.p_title}, {self.p_description},
>>> {self.p_button}"
>>>
>>>
>>> #  campus life style
>>>
>>> class campuslife(models.Model):
>>> cl_title = models.CharField(max_length=50)
>>> cl_date = models.DateTimeField()
>>> cl_description = models.TextField()
>>> cl_image = models.ImageField(upload_to='media/campuslife')
>>>
>>> def __str__(self):
>>> return f"{self.cl_title},
>>> {self.cl_date},{self.cl_description},{self.cl_image}"
>>>
>>> # Gallery
>>>
>>> class gallery(models.Model):
>>> g_image = models.ImageField(upload_to ='media/Gallery')
>>>
>>> def __str__(self):
>>> return f"{self.g_image}"
>>>
>>>
>>> """
>>> About us
>>>
>>> """
>>> # home
>>>
>>> class About(models.Model):
>>> a_title = models.CharField(max_length=150)
>>> a_desc = models.TextField(max_length=200)
>>> a_image = models.ImageField(upload_to ='media/About')
>>>
>>> def __str__(self):
>>> return f"{self.a_title},{self.a_desc},{self.a_image}"
>>>
>>> class description(models.Model):
>>> d_title = models.CharField(max_length=200)
>>> d_desc = models.TextField(max_length=1000)
>>>
>>> def __str__(self):
>>> return f"{self.d_title},{self.d_desc}"
>>>
>>>
>>> """
>>> Admin
>>> """
>>> from django.contrib import admin
>>> from schoolofci.models import About, campuslife, description, gallery,
>>> home_slide, publication, shortcourse, testimonial
>>>
>>> # Register your models here.
>>> # home admin section
>>> @admin.register(home_slide)
>>> class HomeSlideAdmin(admin.ModelAdmin):
>>> list_display = ("s_title","s_description","s_button","s_image")
>>> list_filter = ("s_button",)
>>> fields = ("s_title","s_description","s_button","s_image")
>>>
>>> # courses  categories
>>>
>>> # short courses
>>> @admin

Greetings to Everyone

2021-09-15 Thread Richard Dushime
i kindly need a help  i am making a static website into dynamic using
Python Django and postgresql as my database
i created models then i went in admin to register them then views to create
the function  after i went into html code to put the jijna format so that
it can display at the end i made migrations and it accepted very well
1 for home vieuw it accepting and display all the contents
2-- the problem comes to the second pages about us  that is where no
content is being displayed but the content is all well in admin panel
django site administration  i can add data but it can not display on about
page
i am kindly asking for help  Down is all the files necessary
Here is my models
from django.db import models
from django.db.models.fields import CharField, DateField
from django.db.models.fields.files import ImageField

# Create your models here.
# slide show models
class home_slide(models.Model):

s_title = models.CharField(max_length=100)
s_description = models.TextField(max_length=150)
s_button = models.CharField(max_length=20)
s_image = ImageField(upload_to = 'media')

class Meta():
ordering = ("s_button","s_title","s_description")

def __str__(self):
return f"{self.s_title},{self.s_description},{self.s_button}"

# index -- course categories models

# short courses

class shortcourse(models.Model):
sc_title = models.CharField(max_length=50)
sc_description = models.TextField(max_length=300)
sc_image = models.ImageField(upload_to = 'media')
sc_button = models.CharField(max_length=20)

def __str__(self):
return f"{self.sc_title},
{self.sc_description},{self.sc_image},{self.sc_button}"


#testimonials

class testimonial(models.Model):
t_name = models.CharField(max_length=50)
t_categorie = models.CharField(max_length=20)
t_quote = models.TextField(max_length=300)
t_image = models.ImageField(upload_to='media/testimonials')

def __str__(self):
return f"{self.t_name},
{self.t_categorie},{self.t_quote},{self.t_image}"

#publications and news

class publication(models.Model):
p_date = models.DateField()
p_title = models.CharField(max_length=200)
p_description = models.TextField(max_length=400)
p_button = models.CharField(max_length=15)

def __str__(self):
return f"{self.p_date}, {self.p_title}, {self.p_description},
{self.p_button}"


#  campus life style

class campuslife(models.Model):
cl_title = models.CharField(max_length=50)
cl_date = models.DateTimeField()
cl_description = models.TextField()
cl_image = models.ImageField(upload_to='media/campuslife')

def __str__(self):
return f"{self.cl_title},
{self.cl_date},{self.cl_description},{self.cl_image}"

# Gallery

class gallery(models.Model):
g_image = models.ImageField(upload_to ='media/Gallery')

def __str__(self):
return f"{self.g_image}"


"""
About us

"""
# home

class About(models.Model):
a_title = models.CharField(max_length=150)
a_desc = models.TextField(max_length=200)
a_image = models.ImageField(upload_to ='media/About')

def __str__(self):
return f"{self.a_title},{self.a_desc},{self.a_image}"

class description(models.Model):
d_title = models.CharField(max_length=200)
d_desc = models.TextField(max_length=1000)

def __str__(self):
return f"{self.d_title},{self.d_desc}"


"""
Admin
"""
from django.contrib import admin
from schoolofci.models import About, campuslife, description, gallery,
home_slide, publication, shortcourse, testimonial

# Register your models here.
# home admin section
@admin.register(home_slide)
class HomeSlideAdmin(admin.ModelAdmin):
list_display = ("s_title","s_description","s_button","s_image")
list_filter = ("s_button",)
fields = ("s_title","s_description","s_button","s_image")

# courses  categories

# short courses
@admin.register(shortcourse)
class ShortCourse(admin.ModelAdmin):
list_display = ("sc_title","sc_description","sc_button","sc_image")
list_filter = ("sc_title",)
fields = ("sc_title","sc_description","sc_image","sc_button")

# testimonials
@admin.register(testimonial)
class Testimonial(admin.ModelAdmin):
list_display = ("t_name","t_categorie","t_quote","t_image")
list_filter = ("t_name",)
fields = ("t_name","t_categorie","t_quote","t_image")


# publications
@admin.register(publication)
class Publications(admin.ModelAdmin):
list_display = ("p_date","p_title","p_description","p_button")
list_filter = ("p_title",)
fields = ("p_date","p_title","p_description","p_button")

# campus life
@admin.register(campuslife)
class Campuslife(admin.ModelAdmin):
list_display = ("cl_title","cl_date","cl_description","cl_image")
list_filter = ("cl_title",)
fields = ("cl_title","cl_date","cl_description","cl_image")


# gallery

@admin.register(gallery)
class Gallery(admin.ModelAdmin):
list_display = ("g_image",)




"""
About us page

"""
# home slides
@admin.r

Re: hello i need a help

2021-07-06 Thread Richard Dushime
thank you but i wanted to send all the 4 fields and the "to" arguments  how
can i do it? .. its submission form data i tried to loook into the
documentation everywhere they used 3 fields only

On Mon, Jul 5, 2021 at 10:04 PM sum abiut  wrote:

> The error message is very clear send_mass_mail only expect  4 values but
> you are passing in more than four.
> You should only pass in four values.
>
> datatuple = (
> ('f_subject', 'f_message','f_email',
> ['mygm...@gmail.com']),
> # second person
> ('f_subject', 'f_message','f_email',
> ['sec...@gmail.com'])
> )
>
>
> send_mass_mail(datatuple)
>
>
> refer to the documentations
> <https://docs.djangoproject.com/en/3.2/topics/email/>
>
>
> On Tue, Jul 6, 2021 at 3:14 AM Richard Dushime 
> wrote:
>
>> i am getting this error down  when trying to submit  my form data to
>> email {{ ValueError at /contact
>>
>> too many values to unpack (expected 4)
>>
>> Request Method: POST
>> Request URL: http://localhost:8000/contact
>> Django Version: 3.2.4
>> Exception Type: ValueError
>> Exception Value:
>>
>> too many values to unpack (expected 4)
>>
>> Exception Location:
>> C:\Users\RDM\Envs\env\lib\site-packages\django\core\mail\__init__.py,
>> line 83, in 
>> Python Executable: C:\Users\RDM\Envs\env\Scripts\python.exe
>> Python Version: 3.9.6
>> Python Path:
>>
>> ['C:\\Users\\RDM\\Desktop\\Web\\KVC\\KVC',
>>  'c:\\users\\rdm\\appdata\\local\\programs\\python\\python39\\python39.zip',
>>  'c:\\users\\rdm\\appdata\\local\\programs\\python\\python39\\DLLs',
>>  'c:\\users\\rdm\\appdata\\local\\programs\\python\\python39\\lib',
>>  'c:\\users\\rdm\\appdata\\local\\programs\\python\\python39',
>>  'C:\\Users\\RDM\\Envs\\env',
>>  'C:\\Users\\RDM\\Envs\\env\\lib\\site-packages']
>>
>>
>>
>> Mon, 05 Jul 2021 15:04:30 +00
>> }}}
>>
>>
>> my settings
>> EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend'
>> EMAIL_HOST = 'smtp.gmail.com'
>> EMAIL_PORT = '587'
>> EMAIL_HOST_USER = 'myacco...@gmail.com'
>> EMAIL_HOST_PASSWORD = 'almxfemqayldytab'
>> EMAIL_USE_TLS = True
>>
>> here is my views.py
>>
>> def contact(request):
>> if request.method == 'POST':
>> f_name = request.POST['name']
>> f_email = request.POST['email']
>> f_subject = request.POST['subject']
>> f_message = request.POST['message']
>>
>> # send mail function
>> datatuple = (
>> ('f_name','f_subject', 'f_message','f_email',
>> ['mygm...@gmail.com']),
>> # second person
>> ('f_name','f_subject', 'f_message','f_email',
>> ['sec...@gmail.com'])
>> )
>> send_mass_mail(datatuple)
>>
>> if send_mass_mail(datatuple):
>> messages.info(request,'thank you for contacting us')
>> return redirect('contact')
>> else:
>> messages.info(request, 'try again sorry for inconveniency')
>> return redirect('contact')
>> else:
>> messages.info(request, 'try again sorry for inconveniency')
>> return redirect('contact')
>>
>>
>>
>>
>> here down urls.py
>>
>> path("contact", views.contact, name="contact"),
>>
>> then my form html
>>
>>
>>  > "php-email-form" data-aos="fade-left">
>>   {% csrf_token %}
>>   
>> 
>>   > "name" placeholder="Your Name" data-rule="minlen:4" data-msg=
>> "Please enter at least 4 chars" />
>>   
>> 
>> 
>>   > id="email" placeholder="Your Email" data-rule="email" data-msg=
>> "Please enter a valid email" />
>>   
>> 
>>   
>>   
>> > ="subject" placeholder="Subject" data-rule="minlen:4" data-

hello i need a help

2021-07-05 Thread Richard Dushime
i am getting this error down  when trying to submit  my form data to email
{{ ValueError at /contact

too many values to unpack (expected 4)

Request Method: POST
Request URL: http://localhost:8000/contact
Django Version: 3.2.4
Exception Type: ValueError
Exception Value:

too many values to unpack (expected 4)

Exception Location:
C:\Users\RDM\Envs\env\lib\site-packages\django\core\mail\__init__.py, line
83, in 
Python Executable: C:\Users\RDM\Envs\env\Scripts\python.exe
Python Version: 3.9.6
Python Path:

['C:\\Users\\RDM\\Desktop\\Web\\KVC\\KVC',
 'c:\\users\\rdm\\appdata\\local\\programs\\python\\python39\\python39.zip',
 'c:\\users\\rdm\\appdata\\local\\programs\\python\\python39\\DLLs',
 'c:\\users\\rdm\\appdata\\local\\programs\\python\\python39\\lib',
 'c:\\users\\rdm\\appdata\\local\\programs\\python\\python39',
 'C:\\Users\\RDM\\Envs\\env',
 'C:\\Users\\RDM\\Envs\\env\\lib\\site-packages']



Mon, 05 Jul 2021 15:04:30 +00
}}}


my settings
EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend'
EMAIL_HOST = 'smtp.gmail.com'
EMAIL_PORT = '587'
EMAIL_HOST_USER = 'myacco...@gmail.com'
EMAIL_HOST_PASSWORD = 'almxfemqayldytab'
EMAIL_USE_TLS = True

here is my views.py

def contact(request):
if request.method == 'POST':
f_name = request.POST['name']
f_email = request.POST['email']
f_subject = request.POST['subject']
f_message = request.POST['message']

# send mail function
datatuple = (
('f_name','f_subject', 'f_message','f_email',
['mygm...@gmail.com']),
# second person
('f_name','f_subject', 'f_message','f_email',
['sec...@gmail.com'])
)
send_mass_mail(datatuple)

if send_mass_mail(datatuple):
messages.info(request,'thank you for contacting us')
return redirect('contact')
else:
messages.info(request, 'try again sorry for inconveniency')
return redirect('contact')
else:
messages.info(request, 'try again sorry for inconveniency')
return redirect('contact')




here down urls.py

path("contact", views.contact, name="contact"),

then my form html


 
  {% csrf_token %}
  

  
  


  
  

  
  


  
  


  
  
{% for fmessage in messages %}
{{fmessage}}
{% endfor %}
  
  
Send Message


  

-- 
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/CAJCm56LAbJHrbNFworRZsuD-hP5Gok6wH%2BvQw1NgQuwAJ9_S4w%40mail.gmail.com.


Re: Hi django

2021-06-24 Thread Richard Dushime
THANK U I HAVE DONE TO FIX IT ITS NOW WORKING

On Thu, Jun 24, 2021 at 6:04 PM Julio Cojom 
wrote:

> Django framework uses urls to math the html files. This work with the same
> syntax of static files, you would use {% url 'app:viewname' %} to render
> any page with Django.
>
> You should check the docs of urls to understand how it works and get this
> done.
>
> Regards
>
> El jue., 24 de junio de 2021 9:00 a. m., Richard Dushime <
> mudaherar...@gmail.com> escribió:
>
>> i have a problem on my navigation bar on the index.html link when i click
>> on it its showing me the error (see error.png)  or everything apart that
>> its working fine  need ur help
>> > "{% static 'assets/img/hero-logo.png' %}" alt="">
>>   
>> > "{% static 'assets/img/logo.png' %}" alt="" class="img-fluid">
>>   
>>
>>   
>> 
>>   Home
>>   About
>> 
>>   About Us
>>   Team
>> 
>>   
>>   Services
>>
>>   > "{% static 'assets/img/logo.png' %}" alt="" class="img-fluid">
>>
>>   Portfolio
>>   Pricing
>>   Contact
>>
>> 
>>   
>>
>>
>> --
>> 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/CAJCm56L%2BG%3D8tLZ%3D3sZ0%3Dh%3Ds-w5AXaLroU3nkgoKZO6Fj8xqFBw%40mail.gmail.com
>> <https://groups.google.com/d/msgid/django-users/CAJCm56L%2BG%3D8tLZ%3D3sZ0%3Dh%3Ds-w5AXaLroU3nkgoKZO6Fj8xqFBw%40mail.gmail.com?utm_medium=email&utm_source=footer>
>> .
>>
> --
> 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/CAHRQUHmOdq-yXfQdkDRcvjdf727U1Wr1HogjVpP1bw0o7rN61w%40mail.gmail.com
> <https://groups.google.com/d/msgid/django-users/CAHRQUHmOdq-yXfQdkDRcvjdf727U1Wr1HogjVpP1bw0o7rN61w%40mail.gmail.com?utm_medium=email&utm_source=footer>
> .
>

-- 
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/CAJCm56Jn1WOtp-hGbFoDS6uYy8A5ZSom7fD6j_UG%3D-oM4WQWng%40mail.gmail.com.


Hi django

2021-06-24 Thread Richard Dushime
i have a problem on my navigation bar on the index.html link when i click
on it its showing me the error (see error.png)  or everything apart that
its working fine  need ur help

  

  

  

  Home
  About

  About Us
  Team

  
  Services

  

  Portfolio
  Pricing
  Contact


  

-- 
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/CAJCm56L%2BG%3D8tLZ%3D3sZ0%3Dh%3Ds-w5AXaLroU3nkgoKZO6Fj8xqFBw%40mail.gmail.com.


kindly i need a help

2021-06-23 Thread Richard Dushime
i am making a website using  django  and postgresql the  when i made a
migration and i created the tables then i i went  in the admin (django
administration ) everything was okay  the user and the data i can add and
manipulate all the data and get effect into the database  but  on my
webpages i am not seeing anything it is deseapiring
 this is my index.html file
  

  


  {{Abt.name}}
  {{Abt.desc}}



  

  

  
  

  {{Abt.title}}
  
{{Abt.desc2}}
  
  

 Ullamco laboris nisi ut aliquip ex ea commodo consequat.

 Duis aute irure dolor in reprehenderit in voluptate velit.

 Ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute
irure dolor in reprehenderit in voluptate trideta storacalaperda
mastiro dolore eu fugiat nulla pariatur.

  
  
Ullamco laboris nisi ut aliquip ex ea commodo
consequat. Duis aute irure dolor in reprehenderit in voluptate
velit esse cillum dolore eu fugiat nulla pariatur.
Excepteur sint occaecat cupidatat non proident, sunt in
culpa qui officia deserunt mollit anim id est laborum
  

  


  




  


  {{service.title}}
  {{service.description}}



  

  
  {{service.name}}
  {{service.description1}}


-- 
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/CAJCm56LnoLUsxp-NSZuopNchdG7wAd5UOHxdyfjsfCR7RmMD3w%40mail.gmail.com.
from django.contrib import admin
from .models import Aboutus,Services

# Register your models here.
admin.site.register(Aboutus)
admin.site.register(Services)from os import name
from django.db import models

# Create your models here.

class Aboutus(models.Model):
name = models.CharField(max_length=100)
desc = models.TextField()
img = models.ImageField(upload_to='images')
title = models.CharField(max_length=200)
desc2 = models.TextField()

# services section
class Services(models.Model):
title = models.CharField(max_length=120)
description = models.TextField()
name = models.CharField(max_length=100)
description1 = models.TextField()from kampalavc.models import Aboutus, Services
from django.shortcuts import render

# Create your views here.

def index(request):

Abt = Aboutus.objects.all()
service = Services.objects.all()
kvc = [Abt,service]
return render(request, "index.html", {'kvc': kvc})from django.urls import path

from . import views

urlpatterns = [
path("", views.index, name="index")
]


Re:

2021-04-02 Thread Richard Dushime
thank you for response my question is :
how can i start to contribute on a project ideas on this list
https://code.djangoproject.com/wiki/SummerOfCode2021
 Evented Datastores  but i cant see any contact of the mentor
thank you

On Fri, Apr 2, 2021 at 1:14 PM 'Amitesh Sahay' via Django users <
django-users@googlegroups.com> wrote:

> Plz share ur exact question.
>
> Thanks
>
> Sent from Yahoo Mail on Android
> <https://go.onelink.me/107872968?pid=InProduct&c=Global_Internal_YGrowth_AndroidEmailSig__AndroidUsers&af_wl=ym&af_sub1=Internal&af_sub2=Global_YGrowth&af_sub3=EmailSignature>
>
> On Fri, 2 Apr 2021 at 15:41, Richard Dushime
>  wrote:
> dear developers i am requesting for help
> i am  new  and i wanted to start contributing on a project  but i have
> failed on how to start i have seen one project ideas but i am not seeing a
> mentor contacts  please i need a help
> thank you
>
> --
> 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/CAJCm56Kf9mxV7jxErjFBspBaQKBDPoUPGQkWRjSmO3h%2Btmdw0w%40mail.gmail.com
> <https://groups.google.com/d/msgid/django-users/CAJCm56Kf9mxV7jxErjFBspBaQKBDPoUPGQkWRjSmO3h%2Btmdw0w%40mail.gmail.com?utm_medium=email&utm_source=footer>
> .
>
> --
> 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/1620072665.2307971.1617358458146%40mail.yahoo.com
> <https://groups.google.com/d/msgid/django-users/1620072665.2307971.1617358458146%40mail.yahoo.com?utm_medium=email&utm_source=footer>
> .
>

-- 
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/CAJCm56JrXYZ4aVe-mBsevGiRNCHEdg8ywjdGce12mAVkpSJ_Hg%40mail.gmail.com.


[no subject]

2021-04-02 Thread Richard Dushime
dear developers i am requesting for help
i am  new  and i wanted to start contributing on a project  but i have
failed on how to start i have seen one project ideas but i am not seeing a
mentor contacts  please i need a help
thank you

-- 
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/CAJCm56Kf9mxV7jxErjFBspBaQKBDPoUPGQkWRjSmO3h%2Btmdw0w%40mail.gmail.com.


Re: Conseil et Guide

2021-03-02 Thread Richard Dushime
bonjour mn frere
mon preference est django pour c qui aime develloper avec python
laravel est bon aussi pour php
c qui est bon est que tu peux choisir le framework selon language des
programmation que tu aime plus  et de c que tu vais faire cette language


On Tue, Mar 2, 2021 at 7:18 PM Michel Mahomy  wrote:

> Bonjour M. Richard, selon vous entre Django et les framework Php (Laravel,
> Symfony, CodeIgniter et autres) quel est votre préférence ?
>
> Le dim. 28 févr. 2021 à 17:26, Richard Dushime  a
> écrit :
>
>> mr jean michel  selon moi django est pour le web devellopement en
>> utilisant python pour rendre facile quelque task et d n est pas repeter les
>> codes ecrit  beaucoup des fois
>> thank you
>>
>> On Sun, Feb 28, 2021 at 6:33 PM Michel Mahomy 
>> wrote:
>>
>>> Bonjour M./M.., je suis Michel MAHOMY développeur débutant en Django.
>>> Je voudrais savoir est-ce possible de faire de l'intelligence
>>> artificielle en 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/cb021f3e-8c55-4e46-bcb6-9dbb8e0bc2c9n%40googlegroups.com
>>> <https://groups.google.com/d/msgid/django-users/cb021f3e-8c55-4e46-bcb6-9dbb8e0bc2c9n%40googlegroups.com?utm_medium=email&utm_source=footer>
>>> .
>>>
>> --
>> 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/CAJCm56JSU1%3DBzNNdfWbOxfd%2BwyO_CCjzJEpK9ZS5xXih9RviHQ%40mail.gmail.com
>> <https://groups.google.com/d/msgid/django-users/CAJCm56JSU1%3DBzNNdfWbOxfd%2BwyO_CCjzJEpK9ZS5xXih9RviHQ%40mail.gmail.com?utm_medium=email&utm_source=footer>
>> .
>>
> --
> 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/CAAM8LEMyy_%3DZckGk6yJXJXe0h3mYq26pBHoW5p7Y88jcF1tZHw%40mail.gmail.com
> <https://groups.google.com/d/msgid/django-users/CAAM8LEMyy_%3DZckGk6yJXJXe0h3mYq26pBHoW5p7Y88jcF1tZHw%40mail.gmail.com?utm_medium=email&utm_source=footer>
> .
>

-- 
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/CAJCm56KWk%2BRdUBKgEG6Oh-2CQvYgtR6WOjmeH71JZgtRfXm8OQ%40mail.gmail.com.


Re: Conseil et Guide

2021-02-28 Thread Richard Dushime
mr jean michel  selon moi django est pour le web devellopement en utilisant
python pour rendre facile quelque task et d n est pas repeter les codes
ecrit  beaucoup des fois
thank you

On Sun, Feb 28, 2021 at 6:33 PM Michel Mahomy 
wrote:

> Bonjour M./M.., je suis Michel MAHOMY développeur débutant en Django.
> Je voudrais savoir est-ce possible de faire de l'intelligence artificielle
> en 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/cb021f3e-8c55-4e46-bcb6-9dbb8e0bc2c9n%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/CAJCm56JSU1%3DBzNNdfWbOxfd%2BwyO_CCjzJEpK9ZS5xXih9RviHQ%40mail.gmail.com.