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
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
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
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
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
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
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
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']
>
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
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
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
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
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
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
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
>
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
16 matches
Mail list logo