Django error xhtml2pdf - django

I am trying to generate a pdf with xhtml2pdf using a helper called django-xhtml2pdf but I am getting an error about the library xhtml2pdf. can you help me?
This is the error. thanks
SyntaxError at /
invalid syntax (util.py, line 302)
Request Method: GET
Request URL: http://localhost:8000/
Django Version: 1.7.7
Exception Type: SyntaxError
Exception Value:
invalid syntax (util.py, line 302)
Exception Location: /usr/lib/python3.4/site-packages/xhtml2pdf/__init__.py in <module>, line 41
Python Executable: /usr/bin/python
Python Version: 3.4.3
Python Path:
['/home/ed/syscat',
'/usr/lib/python34.zip',
'/usr/lib/python3.4',
'/usr/lib/python3.4/plat-linux',
'/usr/lib/python3.4/lib-dynload',
'/usr/lib/python3.4/site-packages']

Related

getting error when trying to add object in django admin

error page
Trace:
OperationalError at /admin/jobs/job/add/
no such table: main.auth_user__old
Request Method: POST
Request URL: http://127.0.0.1:8000/admin/jobs/job/add/
Django Version: 2.0.2
Exception Type: OperationalError
Exception Value:
no such table: main.auth_user__old
Exception Location: C:\Users\codering\Desktop\myenv\lib\site-packages\django\db\backends\sqlite3\base.py in execute, line 303
Python Executable: C:\Users\codering\Desktop\myenv\Scripts\python.exe
Python Version: 3.8.0
Python Path:
['C:\\Users\\codering\\Desktop\\portfolio',
'C:\\Users\\codering\\Desktop\\myenv\\Scripts\\python38.zip',
'C:\\Users\\codering\\Desktop\\myenv\\DLLs',
'C:\\Users\\codering\\Desktop\\myenv\\lib',
'C:\\Users\\codering\\Desktop\\myenv\\Scripts',
'c:\\users\\codering\\appdata\\local\\programs\\python\\python38\\Lib',
'c:\\users\\codering\\appdata\\local\\programs\\python\\python38\\DLLs',
'C:\\Users\\codering\\Desktop\\myenv',
'C:\\Users\\codering\\Desktop\\myenv\\lib\\site-packages']
Server time: Wed, 20 Nov 2019 10:45:27 +0000
This page is opening when i am trying to add an object, can anyone help?
Try running
python manage.py makemigrations
python manage.py migrate
From command line

Django: inlineformset widgets throwing error

Hi I have a inlineformset form, i need to change css class of its fields. I am using widgets to change the class.
However I am get error.
My form:
createinvoiceformset = inlineformset_factory(serviceinvoice, serviceinvoiceitems,can_delete=True,form=invoiceitemsform,extra=2,widgets={'Quantity': FloatField(attrs={'class':'quantity'})})
Error:
TypeError at /invoice/createinvoice/
__init__() got an unexpected keyword argument 'attrs'
Request Method: GET
Request URL: http://localhost:8000/invoice/createinvoice/
Django Version: 1.8.9
Exception Type: TypeError
Exception Value:
__init__() got an unexpected keyword argument 'attrs'
Exception Location: C:\Python34\lib\site-packages\django\forms\fields.py in __init__, line 245
Python Executable: C:\Python34\python.exe
Python Version: 3.4.0
Python Path:
['D:\\pythonspace\\tiktant',
'C:\\Python34\\lib\\site-packages\\django_select2-4.3.2-py3.4.egg',
'C:\\Python34\\lib\\site-packages\\python_dateutil-2.2-py3.4.egg',
'C:\\Python34\\lib\\site-packages\\babel-1.3-py3.4.egg',
'C:\\Python34\\lib\\site-packages\\django_classy_tags-0.5.1-py3.4.egg',
'C:\\Python34\\lib\\site-packages\\django_datetime_widget-0.9.3-py3.4.egg',
'C:\\Python34\\lib\\site-packages\\django_select2_py3-4.2.1-py3.4.egg',
'C:\\Python34\\lib\\site-packages\\django_bootstrap3-4.11.0-py3.4.egg',
'C:\\Windows\\system32\\python34.zip',
'C:\\Python34\\DLLs',
'C:\\Python34\\lib',
'C:\\Python34',
'C:\\Python34\\lib\\site-packages']
Thank in advance for the help.
FloatField is not a widget. You should use NumberInput instead.

Error in testing part of my django poll app

I get the following error in my django poll app. I do not understand what it states, can anyone suggest me what to do? Any solution to this?
NameError at / name 'model' is not defined
Request Method: GET Request URL: http://127.0.0.1:8000/
Django Version: 1.8.6
Exception Type: NameError
Exception Value: name 'model' is not defined
Exception Location: c:\Anaconda-installation\mysite\polls\views.py in ResultView, line 26
Python Executable: C:\Anaconda-installation\python.exe
Python Version: 2.7.10
Python Path: ['c:\\Anaconda-installation\\mysite',
'C:\\Anaconda-installation\\python27.zip',
'C:\\Anaconda-installation\\DLLs',
'C:\\Anaconda-installation\\lib',
'C:\\Anaconda-installation\\lib\\plat-win',
'C:\\Anaconda-installation\\lib\\lib-tk',
'C:\\Anaconda-installation',
'c:\\anaconda-installation\\lib\\site-packages\\sphinx-1.3.1-py2.7.egg',
'c:\\anaconda-installation\\lib\\site-packages\\setuptools-17.1.1-py2.7.egg',
'C:\\Anaconda-installation\\lib\\site-packages',
'C:\\Anaconda-installation\\lib\\site-packages\\cryptography-0.9.1-py2.7-win-amd64.egg',
'C:\\Anaconda-installation\\lib\\site-packages\\win32',
'C:\\Anaconda-installation\\lib\\site-packages\\win32\\lib',
'C:\\Anaconda-installation\\lib\\site-packages\\Pythonwin']
Server time: Tue, 8 Dec 2015 04:49:21 +0000

django-lfs "No module named appconf"

I have a problem after installing django-lfs
'compress' is not a valid tag library: ImportError raised loading compressor.templatetags.compress: No module named appconf
Request Method: GET
Request URL:
Django Version: 1.3.1
Exception Type: TemplateSyntaxError
Exception Value:
'compress' is not a valid tag library: ImportError raised loading compressor.templatetags.compress: No module named appconf
Exception Location: /usr/local/lib/python2.7/dist-packages/django/template/defaulttags.py in load, line 1054
Python Executable: /usr/bin/python
Python Version: 2.7.5
http://dpaste.com/1653897/
how to fix it??
Have you tried installing django-appconf?

Error importing django-templated-mail

I'm trying to install a module so I can get my app to send emails, so I installed in my app https://github.com/bradwhittington/django-templated-email, but, even I've followed all instructions, I'm getting this error message:
ImportError at /
cannot import name send_templated_mail
Request Method: GET
Request URL: http://127.0.0.1:8000/
Django Version: 1.4
Exception Type: ImportError
Exception Value:
cannot import name send_templated_mail
Exception Location: /Users/user/Dropbox/proyect/my-app/quizzer/views.py in <module>, line 32
Python Executable: /usr/bin/python
Python Version: 2.7.1
Python Path:
['/Users/user/Dropbox/proyect/my-app/quizzer/',
'/Library/Python/2.7/site-packages/pip-1.0-py2.7.egg',
'/Users/user/Dropbox/proyect/my-app/quizzer/quizzer/src/greatape/src',
'/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python27.zip',
'/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7',
'/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/plat-darwin',
'/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/plat-mac',
'/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/plat-mac/lib-scriptpackages',
'/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python',
'/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-tk',
'/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-old',
'/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload',
'/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/PyObjC',
'/Library/Python/2.7/site-packages',
'/Library/Python/2.7/site-packages/setuptools-0.6c11-py2.7.egg-info']
Any ideas?
EDIT:
from templated_email import send_templated_mail
send_templated_mail(
template_name='tempname',
from_email='******#gmail.com',
recipient_list=['****#gmail.com'],
context={
'username':u.username,
'date':datetime.date.today(),
},
)