how to filter by month from template

2022-02-22 Thread Gautam Ankul
HERE STACKOVER FLOW LINK OF QUESTIONS
:https://stackoverflow.com/questions/71232795/how-to-filter-by-month-from-template

-

I'm attempting to channel a datetime field by month and year. Though no one 
can really say why while entering both month and year I get back a vacant 
set returned.

Model
class SpareParts(models.Model): vehicle = models.ForeignKey(Vehicle, 
on_delete=models.CASCADE) amount = models.IntegerField(blank=False, 
null=False) date = models.DateField(blank=False, null=False) 

And i want to filter on the basis of vehicle and month vise and here is 
mine view VIEWS.py
def view_spare(request): sparepart = SpareParts.objects.all() 
vehicle_filter = request.POST.get('vehicle') # get the value of the date 
field month_filter = request.POST.get('month') # get the value of the date 
field if vehicle_filter: if month_filter: sparepart = 
sparepart.filter(vehicle=vehicle_filter,date__month=month_filter).aggregate(Sum('amount'))
 
return 
render(request,'invoice/spare_parts_list.html',{'sparepart':sparepart}) 

and i want render the whole month sum of amount in template

-- 
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/746d4862-f349-4ccd-be54-5b894a115c02n%40googlegroups.com.


Re: Need help in User log in, someone please help

2022-02-22 Thread vijay chourey
Hi Raj,

Error is showing due to the blank value in user name, please try to print
username before registration if it's blank please check form fields.

Once done you can directly login your account with

"auth.login(request,user)


On Wed, 23 Feb, 2022, 12:22 pm Antonis Christofides, <
anto...@antonischristofides.com> wrote:

> You have this statement:
> user = User.objects.create_user(username=username, email=email,
> password = password)
>
> Just before this statement, you need to insert a statement that will
> enable you to examine the value of the "username" statement. Something like
> this:
>
> print(username)
> user = User.objects.create_user(username=username, email=email,
> password = password)
>
> This might or not might work properly with Django. What most Python
> programmers would do instead is this:
>
> import pdb; pdb.set_trace()
> user = User.objects.create_user(username=username, email=email,
> password = password)
>
> but for that you need to know how to use pdb. It's quite simple though
> tricky at first. Eventually you will need to learn it, however, so now
> would be a good time. Search the web.
>
> Regards,
>
> Antonis
>
> Antonis Christofides
> +30-6979924665 (mobile)
>
>
>
> On 22/02/2022 19.01, Raj wrote:
>
> I am trying to create register form access in django, but i am getting this
> * " ValueError at /registerThe given username must be set" error. *
> Kindly help me how can I fix this bug.
> please.
> *here is the code of the views.py file.--->*
> from msilib.schema import Feature
> from pyexpat.errors import messages
> from django.shortcuts import render, redirect
> from django.contrib.auth.models import User, auth
> from django.contrib import messages
> from django.http import HttpResponse
> from .models import Feature
> # Create your views here.
> def index(request):
> return render(request,'index.html',{'features': features})
> #=---register function---
> def register(request):
> if request.method == 'POST':
> username = request.POST.get('username')
> email = request.POST.get('email')
> password = request.POST.get('password')
> password2 = request.POST.get('password2')
> # username = request.POST['username']
> # email = request.POST['email']
> # password = request.POST['password']
> # password2 = request.POST['password2']
> if password == password2:
> if User.objects.filter(email = email).exists():
> messages.info(request, 'Email already has been used!')
> return redirect('register')
> elif User.objects.filter(username= username).exists():
> messages.info(request, 'Username already exist')
> return redirect('register')
> else:
> user = User.objects.create_user(username=username,
> email=email, password = password)
> user.save();
> print("User created")
> return redirect('login')  #check
> else:
> messages.info(request, 'Incorrect password')
> return redirect('register')
> else:
> return render(request, 'register.html')
> def login(request):
> if request.method == 'POST':
> # username = request.POST['username']
> # password = request.POST['password']
> username = request.POST.get('username')
> password = request.POST.get('password')
> user = auth.authenticate(username = username, password = password)
> if user is not None:
> auth.login(request, user)
> return redirect('/')
> else:
> messages.info(request,'Credential Invalid')
> return redirect('login')
> else:
> return render(request, 'login.html')
> *here is the SS of the error*[image: Screenshot (75).png]
> --
> 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/c7bcf4b5-f8e7-4f84-97df-02e4655e42f1n%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/cdfef3b3-37b4-801d-c53c-85d8176e3025%40antonischristofides.com
> 
> .
>

-- 
You received this message because 

Re: Need help in User log in, someone please help

2022-02-22 Thread Jitendra kumar Patra
7008080545 DM .

On Wed, 23 Feb 2022, 12:22 pm Antonis Christofides, <
anto...@antonischristofides.com> wrote:

> You have this statement:
> user = User.objects.create_user(username=username, email=email,
> password = password)
>
> Just before this statement, you need to insert a statement that will
> enable you to examine the value of the "username" statement. Something like
> this:
>
> print(username)
> user = User.objects.create_user(username=username, email=email,
> password = password)
>
> This might or not might work properly with Django. What most Python
> programmers would do instead is this:
>
> import pdb; pdb.set_trace()
> user = User.objects.create_user(username=username, email=email,
> password = password)
>
> but for that you need to know how to use pdb. It's quite simple though
> tricky at first. Eventually you will need to learn it, however, so now
> would be a good time. Search the web.
>
> Regards,
>
> Antonis
>
> Antonis Christofides
> +30-6979924665 (mobile)
>
>
>
> On 22/02/2022 19.01, Raj wrote:
>
> I am trying to create register form access in django, but i am getting this
> * " ValueError at /registerThe given username must be set" error. *
> Kindly help me how can I fix this bug.
> please.
> *here is the code of the views.py file.--->*
> from msilib.schema import Feature
> from pyexpat.errors import messages
> from django.shortcuts import render, redirect
> from django.contrib.auth.models import User, auth
> from django.contrib import messages
> from django.http import HttpResponse
> from .models import Feature
> # Create your views here.
> def index(request):
> return render(request,'index.html',{'features': features})
> #=---register function---
> def register(request):
> if request.method == 'POST':
> username = request.POST.get('username')
> email = request.POST.get('email')
> password = request.POST.get('password')
> password2 = request.POST.get('password2')
> # username = request.POST['username']
> # email = request.POST['email']
> # password = request.POST['password']
> # password2 = request.POST['password2']
> if password == password2:
> if User.objects.filter(email = email).exists():
> messages.info(request, 'Email already has been used!')
> return redirect('register')
> elif User.objects.filter(username= username).exists():
> messages.info(request, 'Username already exist')
> return redirect('register')
> else:
> user = User.objects.create_user(username=username,
> email=email, password = password)
> user.save();
> print("User created")
> return redirect('login')  #check
> else:
> messages.info(request, 'Incorrect password')
> return redirect('register')
> else:
> return render(request, 'register.html')
> def login(request):
> if request.method == 'POST':
> # username = request.POST['username']
> # password = request.POST['password']
> username = request.POST.get('username')
> password = request.POST.get('password')
> user = auth.authenticate(username = username, password = password)
> if user is not None:
> auth.login(request, user)
> return redirect('/')
> else:
> messages.info(request,'Credential Invalid')
> return redirect('login')
> else:
> return render(request, 'login.html')
> *here is the SS of the error*[image: Screenshot (75).png]
> --
> 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/c7bcf4b5-f8e7-4f84-97df-02e4655e42f1n%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/cdfef3b3-37b4-801d-c53c-85d8176e3025%40antonischristofides.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 

Re: Need help in User log in, someone please help

2022-02-22 Thread Antonis Christofides

You have this statement:

    user = User.objects.create_user(username=username, email=email, password = 
password)


Just before this statement, you need to insert a statement that will enable you 
to examine the value of the "username" statement. Something like this:


    print(username)
    user = User.objects.create_user(username=username, email=email, password = 
password)


This might or not might work properly with Django. What most Python programmers 
would do instead is this:


    import pdb; pdb.set_trace()
    user = User.objects.create_user(username=username, email=email, password = 
password)


but for that you need to know how to use pdb. It's quite simple though tricky at 
first. Eventually you will need to learn it, however, so now would be a good 
time. Search the web.


Regards,

Antonis

Antonis Christofides
+30-6979924665 (mobile)



On 22/02/2022 19.01, Raj wrote:
I am trying to create register form access in django, but i am getting this*" 
ValueError at /registerThe given username must be set" error.

*
Kindly help me how can I fix this bug.
please.
*here is the code of the views.py file.--->*
from msilib.schema import Feature
from pyexpat.errors import messages
from django.shortcuts import render, redirect
from django.contrib.auth.models import User, auth
from django.contrib import messages
from django.http import HttpResponse
from .models import Feature
# Create your views here.
def index(request):
    return render(request,'index.html',{'features': features})
#=---register function---
def register(request):
    if request.method == 'POST':
        username = request.POST.get('username')
        email = request.POST.get('email')
        password = request.POST.get('password')
        password2 = request.POST.get('password2')
        # username = request.POST['username']
        # email = request.POST['email']
        # password = request.POST['password']
        # password2 = request.POST['password2']
        if password == password2:
            if User.objects.filter(email = email).exists():
                messages.info(request, 'Email already has been used!')
                return redirect('register')
            elif User.objects.filter(username= username).exists():
                messages.info(request, 'Username already exist')
                return redirect('register')
            else:
                user = User.objects.create_user(username=username, 
email=email, password = password)

                user.save();
                print("User created")
                return redirect('login')  #check
        else:
            messages.info(request, 'Incorrect password')
            return redirect('register')
    else:
        return render(request, 'register.html')
def login(request):
    if request.method == 'POST':
        # username = request.POST['username']
        # password = request.POST['password']
        username = request.POST.get('username')
        password = request.POST.get('password')
        user = auth.authenticate(username = username, password = password)
        if user is not None:
            auth.login(request, user)
            return redirect('/')
        else:
            messages.info(request,'Credential Invalid')
            return redirect('login')
    else:
        return render(request, 'login.html')
*here is the SS of the error*Screenshot (75).png
--
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/c7bcf4b5-f8e7-4f84-97df-02e4655e42f1n%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/cdfef3b3-37b4-801d-c53c-85d8176e3025%40antonischristofides.com.


profile page and new user will not save

2022-02-22 Thread 'Delvin Alexander' via Django users
Hello Everyone,

I am having trouble saving a new profile, and user when they are created. 
Upon creating a new user and profile, i get this:

"TypeError: Profile.save() got an unexpected keyword argument 
'force_insert'"

Would anyone know why this is popping up for me


Here is my work for that particular page as well.

from django.shortcuts import render, redirect
from django.contrib import messages
from .forms import UserRegisterForm, UserUpdateForm, ProfileUpdateForm
from django.contrib.auth.decorators import login_required


def register(request):
if request.method == 'POST':
form = UserRegisterForm(request.POST)
if form.is_valid():
form.save()
username = form.cleaned_data.get('username')
messages.success(request, f'Your Account has been created you 
are now able to log in {username}!')
return redirect('login')
else:
form = UserRegisterForm()
return render(request, 'users/register.html', {'form': form})

@login_required
def profile(request):
if request.method == 'POST':
u_form = UserUpdateForm(request.POST, instance=request.user)
p_form = ProfileUpdateForm(request.POST, request.FILES, 
instance=request.user.profile)
if u_form.is_valid() and p_form.is_valid():
u_form.save()
p_form.save()
messages.success(request, f'Your Account has been updated!')
return redirect('profile')
else:
u_form = UserUpdateForm(instance=request.user)
p_form = ProfileUpdateForm(instance=request.user.profile)

context = {
'u_form': u_form,
'p_form': p_form,
}

return render(request, 'users/profile.html', context)

-- 
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/39c57e72-9e09-403e-97db-562ef943db4an%40googlegroups.com.


How to display models.full_clean() ValidationError in django admin?

2022-02-22 Thread ivory 954
Copy from:
https://stackoverflow.com/questions/71231549/how-to-display-models-full-clean-validationerror-in-django-admin

Question:

https://docs.djangoproject.com/en/4.0/ref/models/instances/#validating-objects
from django.core.exceptions import ValidationError
try: 
article.full_clean()
except ValidationError as e:
# Do something based on the errors contained in e.message_dict. 
# Display them to a user, or handle them programmatically. 
 pass

There tell us can *Display them to a user*, how to display errors in Admin?

When I do nothing:

   - When Settings.py Debug = True, it always render a *ValidationError at 
   /admin/xxx/xxx/xxx/change/* page.
   - When Settings.py Debug = False, it always render a *HTTP 500* page.

-- 
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/1bc61c0c-a80a-468a-87d6-4d1f6715e2b5n%40googlegroups.com.


Re: Needs help

2022-02-22 Thread Heman Okumbo
Did you mean to turn(print) images to physical objects especially using 3D
printers?

On Tue, Feb 22, 2022, 12:55 Antonis Christofides <
anto...@antonischristofides.com> wrote:

> Hello Loic,
>
> Please how to turn a picture into a LEGO version?
> A project that does this will be welcome.
>
> Not sure what you mean by that and what it has to do with Django. You
> aren't going to get any useful answers in this list unless you change the
> way you ask questions.
>
> You should really take some time to read
> http://www.catb.org/~esr/faqs/smart-questions.html.
>
> Regards,
>
> Antonis
>
> Antonis Christofides
> +30-6979924665 (mobile)
>
>
> On 22/02/2022 11.30, loic ngounou wrote:
>
> Please how to turn a picture into a LEGO version?
> A project that does this will be welcome.
> --
> 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/26ef7fae-d58c-45f7-b132-c863aa2ebb03n%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/990f2eab-b8d3-5ecc-1f5f-635d44e06c05%40antonischristofides.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/CAJt9Cbho1YNQU9Tm%3D1p0geikbYNEOHkjqgn2ppxhH1jiTEdPnA%40mail.gmail.com.


Re: Needs help

2022-02-22 Thread kuda ronnie
lol   yea we should be patient with reading i agree wit u.

On Tue, Feb 22, 2022 at 11:55 AM Antonis Christofides <
anto...@antonischristofides.com> wrote:

> Hello Loic,
>
> Please how to turn a picture into a LEGO version?
> A project that does this will be welcome.
>
> Not sure what you mean by that and what it has to do with Django. You
> aren't going to get any useful answers in this list unless you change the
> way you ask questions.
>
> You should really take some time to read
> http://www.catb.org/~esr/faqs/smart-questions.html.
>
> Regards,
>
> Antonis
>
> Antonis Christofides
> +30-6979924665 (mobile)
>
>
> On 22/02/2022 11.30, loic ngounou wrote:
>
> Please how to turn a picture into a LEGO version?
> A project that does this will be welcome.
> --
> 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/26ef7fae-d58c-45f7-b132-c863aa2ebb03n%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/990f2eab-b8d3-5ecc-1f5f-635d44e06c05%40antonischristofides.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%2B0Qjxe3wpA6oqe511YzFAfjxVOo_SOsTJdcdRB%2BVCbfP83K7Q%40mail.gmail.com.


Re: Django Project

2022-02-22 Thread Kasper Laudrup

On 22/02/2022 16.10, VISHAL DOHALE wrote:
i am VIshal , i have to make web application using django for my collage 
project can anyone give me some ideas/topics or some suggestions . how i 
can build this ?




https://docs.djangoproject.com/en/4.0/intro/tutorial01/

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/1395cc6b-8a3a-776f-580c-94b1d862b7b1%40stacktrace.dk.


OpenPGP_0xE5D9CAC64AAA55EB.asc
Description: OpenPGP public key


OpenPGP_signature
Description: OpenPGP digital signature


Django Project

2022-02-22 Thread VISHAL DOHALE
i am VIshal , i have to make web application using django for my collage 
project can anyone give me some ideas/topics or some suggestions . how i 
can build this ?

-- 
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/feb0c8a9-05ee-485c-b44f-8f48be9df620n%40googlegroups.com.


Re: Needs help

2022-02-22 Thread loic ngounou
Please how to transform a simple image to LEGO image using django ?

Le mar. 22 févr. 2022 à 10:53, Antonis Christofides <
anto...@antonischristofides.com> a écrit :

> Hello Loic,
>
> Please how to turn a picture into a LEGO version?
> A project that does this will be welcome.
>
> Not sure what you mean by that and what it has to do with Django. You
> aren't going to get any useful answers in this list unless you change the
> way you ask questions.
>
> You should really take some time to read
> http://www.catb.org/~esr/faqs/smart-questions.html.
>
> Regards,
>
> Antonis
>
> Antonis Christofides
> +30-6979924665 (mobile)
>
>
> On 22/02/2022 11.30, loic ngounou wrote:
>
> Please how to turn a picture into a LEGO version?
> A project that does this will be welcome.
> --
> 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/26ef7fae-d58c-45f7-b132-c863aa2ebb03n%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/990f2eab-b8d3-5ecc-1f5f-635d44e06c05%40antonischristofides.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%2BWZmRSJxL%3DHEYH7pS6C0DyFBTqMXMeP-7f5CV%2BCy093zko4ug%40mail.gmail.com.


Re: Needs help

2022-02-22 Thread Antonis Christofides

Hello Loic,


Please how to turn a picture into a LEGO version?
A project that does this will be welcome.
Not sure what you mean by that and what it has to do with Django. You aren't 
going to get any useful answers in this list unless you change the way you ask 
questions.


You should really take some time to read 
http://www.catb.org/~esr/faqs/smart-questions.html.


Regards,

Antonis

Antonis Christofides
+30-6979924665 (mobile)


On 22/02/2022 11.30, loic ngounou wrote:

Please how to turn a picture into a LEGO version?
A project that does this will be welcome.
--
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/26ef7fae-d58c-45f7-b132-c863aa2ebb03n%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/990f2eab-b8d3-5ecc-1f5f-635d44e06c05%40antonischristofides.com.


Re: Need for help

2022-02-22 Thread Kasper Laudrup

On 22/02/2022 10.25, loic ngounou wrote:
how to generate a text template with editable zones with django from the 
browser so that when you click on a word the cursor appears and you can 
edit it ?




Not sure what an editable zone is, but it sounds like you're simply 
describing a TextField:


https://docs.djangoproject.com/en/4.0/ref/models/fields/#textfield

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/6c282ff2-1cd1-ca14-f39a-c08e8b361744%40stacktrace.dk.


OpenPGP_0xE5D9CAC64AAA55EB.asc
Description: OpenPGP public key


OpenPGP_signature
Description: OpenPGP digital signature


Needs help

2022-02-22 Thread loic ngounou
Please how to turn a picture into a LEGO version? 
A project that does this will be welcome.

-- 
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/26ef7fae-d58c-45f7-b132-c863aa2ebb03n%40googlegroups.com.


Re: Need for help

2022-02-22 Thread loic ngounou
how to generate a text template with editable zones with django from the
browser so that when you click on a word the cursor appears and you can
edit it ?

Le lun. 21 févr. 2022 à 21:27, Kasper Laudrup  a
écrit :

> On 21/02/2022 16.35, loic ngounou wrote:
> > how to create a text containing variables that can be modified with dango
> >
>
> You need to be a bit more specific. It is impossible for anyone to guess
> what you mean by this.
>
> 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/bb275b47-473b-cb15-c2be-d76d02bf3fec%40stacktrace.dk
> .
>

-- 
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%2BWZmRSK4A16HfPw-XvaPM_PjiZzrCwviwt%3Dqk%3Dcpgr5QfWkEA%40mail.gmail.com.