Having trouble with django-filebrowser

2017-12-16 Thread Mike Dewhirst
I have tried both django-filebrowser and django-filebrowser-no-grappelli with django-tinymce4-lite The TinyMCE part is working fine in the Admin and trying to insert an image in the text is trying to work and if I pasted in a url it would probably insert the image it points to. The problem i

No Reverse Match Exception

2017-12-16 Thread yingi keme
I am using the django generic UpdateView class UserUpdate(UpdateView): model = User fields = ['first_name', 'last_name', 'email', 'username'] template_name = 'Core\MyUpdate.htm' And my url pattern is this: url(r'^UpdateMe/(?P\d+)/$', UserUpdate.as_view(), name='Update') However, thi

How to implement full-text search in Django?

2017-12-16 Thread Etienne Robillard
Hi all, I would like some input on implementing a full-text search engine for my website and blog. I really don't want to use Google search API or a external webservice to index my documents. Also, my blog is powered by ZODB while my main website uses Durus. Ideally, i would like to use Re

Re: How to implement full-text search in Django?

2017-12-16 Thread Egor Smolyakov
Check out this library https://github.com/django-haystack/django-haystack It supports a wide range of backends. On 16/12/2017, Etienne Robillard wrote: > Hi all, > > I would like some input on implementing a full-text search engine for my > website and blog. > > I really don't want to use Google

Re: How to implement full-text search in Django?

2017-12-16 Thread Etienne Robillard
Thanks Egor. Django-haystack looks quite flexible and well-designed. My current plan is to use redisearch plugin for Redis: http://redisearch.io/ I'm thinking that I could write a script to import into redis a list of URLs by fetching a RSS file as input and then use redisearch to perform a

Django editable pdfs

2017-12-16 Thread chaitanya.creator
Hey I want to convert my forms into editable PDF for invoice,application. 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...@googleg

how can i add django in to cpanel

2017-12-16 Thread Rupam Bumba
i want to use djndo as my website -- 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 post to this group, send email t

Re: No Reverse Match Exception

2017-12-16 Thread Любопытный Енот
try fix your pattern to r'^/Core/UpdateMe/(?P\\d+)/$' суббота, 16 декабря 2017 г., 12:22:49 UTC+3 пользователь yingi keme написал: > > I am using the django generic UpdateView > > class UserUpdate(UpdateView): > model = User > fields = ['first_name', 'last_name', 'email', 'username'] >

having trouble with django models

2017-12-16 Thread Mukul Agrawal
Hello, I am newbie to django. I was trying my hand on models. When i used the below code in models.py, "timestamp" and "updated" are not able visible on admin site. Is something wrong with the code? ''' from django.db import models # Create your models here. class RestaurantLocation(models.Mod

Re: having trouble with django models

2017-12-16 Thread Mike Dewhirst
On 16/12/2017 10:06 PM, Mukul Agrawal wrote: Hello, I am newbie to django. I was trying my hand on models. When i used the below code in models.py, "timestamp" and "updated" are not able visible on admin site. Is something wrong with the code? It looks OK to me. Have you included them in your

How to implement history/track changes for all users

2017-12-16 Thread Alexander Joseph
I have an app that keeps a database of products and parts of products that allows users to authenticate via their Office365 account. I'd like to track all the changes all users make (create, update, delete), which I want to make view-able by all users. It looks like there are a couple of package

Re: Office365/SharePoint Online Integration

2017-12-16 Thread Alexander Joseph
Thanks for your reply. I found this guide.. https://www.coderedcorp.com/blog/uploading-files-to-sharepoint-with-django-and-pyth/ where the author is trying to do the same thing I'm trying to do. It sounds like he uses the OneDrive API. I've never used APIs before so this will definitely be a le

having trouble with django models

2017-12-16 Thread Daniel Roseman
This is expected behaviour. You've set them to be populated automatically on create and update. So there's no need to be modifiable via the admin. -- DR. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop

Model Design Questions

2017-12-16 Thread Mark Phillips
I am building an electronic document management system using django and mysql. The purpose of this system is to catalog and retrieve electronic documents. There is no inventory of the physical documents. There are about 3,000 documents (photos, pdfs, videos) now, and that number could double in the

Re: Model Design Questions

2017-12-16 Thread Dan Tagg
If you switched to Postgres you could use a json data type or dictionary data type. Django 1.11 onwards supports the storage and retrieval of both types I believe. Dan On Sun, 17 Dec 2017 at 07:46, Mark Phillips wrote: > I am building an electronic document management system using django and >

Re: Model Design Questions

2017-12-16 Thread Matemática A3K
I use https://github.com/dmkoch/django-jsonfield for storing metadata and works very well, the only problem that I see in using one jsonfield for all the metadata you have for a document is searching (which I don't need). 3k, 6k or 9k of rows is "nothing" for MySQL or Postgres, a bottleneck won't