How to share post to social media from a Django blog

2020-05-27 Thread sunday honesty
Please can someone help me look into this. I have done everything to use django-social-share but it refused to work with the templates I defined. Can you help me take a look. https://stackoverflow.com/questions/62038241/how-do-i-make-custom-templates-for-django-social-share -- You received this

Re: Watch "django blog gets Html tags in public view || blog || blog-detail page." on YouTube

2020-04-18 Thread Shainny Martinez
El martes, 14 de abril de 2020, 8:13:52 (UTC-6), Anonymous Patel escribió: > > https://youtu.be/bdY6R4RPKdE > > > Tu error está en el parámetro de que pasaste a la función redirect > > Incorecto: redirect('home') > > Correcto: redirect('') > > Ya que en tu archivo urls.py le asignaste a HomeVie

Watch "django blog gets Html tags in public view || blog || blog-detail page." on YouTube

2020-04-14 Thread Anonymous Patel
https://youtu.be/bdY6R4RPKdE -- 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

Re: Django blog post not linking to detail.html page

2020-01-25 Thread Aditya Khatwa
Django 2 by example is pretty good book when it comes to understand django If you are having some problems then I suggest you go through the same project in your case blog post again and try to match it with your code syntax most likely you are going to find the problem you are facing. On Sun,

Re: Django blog post not linking to detail.html page

2020-01-25 Thread aakansha jain
Can anyone tell me how to run the django development environment so that I can contribute to Django On Sunday, January 19, 2020 at 9:56:31 PM UTC+5:30, amanda wrote: > > Hello, > I am new to Django, i follow a book : Django by Example 2. i install a > blog, it show blog post list, but when i cli

Re: Django blog post not linking to detail.html page

2020-01-20 Thread John
OK. I've read further through your code. It looks like it should be:     from blog import views But you will have another problem, unless you have defined PostListView somewhere in views.py other than what you have shown (2.JPG in your original email stops at line 35). I do not have the Djan

Re: Django blog post not linking to detail.html page

2020-01-19 Thread amanda
Hi Gerardo, i am not full understand, your mean is for example post.title ? post.title 在 2020年1月19日星期日 UTC+1下午6:45:11,Gerardo Palazuelos写道: > > Hello, > File: template/blog/post/list.html, line 7 > It doesn’t sounds good at least for me. > The way I do is: > %}”>post.title > > > > --- > Ger

Re: Django blog post not linking to detail.html page

2020-01-19 Thread maninder singh Kumar
I see you have put href as post.get_absolute_url You could for instance use a relative path. Put a page field in your model Post, to refer to the html that the post will be on. And then : {% for text in post_list%} {{text.content_Title}} {{text.content_Description}} {% endfor %} This

Re: Django blog post not linking to detail.html page

2020-01-19 Thread amanda
Hi John, Thank you! I config setting DEBUG = True, but my webserver does not display any error message. i use pythonanywhere host, i do not need running: runserver. I did try your advise, if i did that, i got error message: 在 2020年1月20日星期一 UTC+1上午6:43:10,amanda写道: > > > > 在 2020年1月19日星期日 UTC+1下午1

Re: Django blog post not linking to detail.html page

2020-01-19 Thread amanda
在 2020年1月19日星期日 UTC+1下午11:28:24,John写道: > > /mysite/blog/urls.py, line 2 is bad syntax and should probably read: > > from .views import * > > You should also be seeing some kind of error from your webserver (are you > running the site using runserver first?) which would give you a clue where >

Re: Django blog post not linking to detail.html page

2020-01-19 Thread John
/mysite/blog/urls.py, line 2 is bad syntax and should probably read: from .views import * You should also be seeing some kind of error from your webserver (are you running the site using runserver first?) which would give you a clue where the problem is. John On 19/01/2020 16:03, amanda wro

Re: Django blog post not linking to detail.html page

2020-01-19 Thread Gerardo Palazuelos Guerrero
Hello, File: template/blog/post/list.html, line 7 It doesn’t sounds good at least for me. The way I do is: post.title --- Gerardo Palazuelos Enviado desde mi iPhone > El 19 ene 2020, a la(s) 9:25, amanda escribió: > >  > Hello, > I am new to Django, i follow a book : Django by Example 2. i

Integration of Django-cms site with django blog

2019-11-21 Thread হজমুলা খান
Hi Recently I have made a website with django-cms and another blog site with django. Now I want to integrate Django blog site with one of the pages of Django-cms’s site. Should I use aaphook or djangocms-blog? I am a new learner of Django. I am little bit confused on which way I should go

Re: Django Blog app (Error): __str__ returned non-string (type User)

2018-10-11 Thread robertlls4480
thanks, that helped alot :D -- 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 to djang

Django Blog app (Error): __str__ returned non-string (type User)

2018-10-11 Thread Ігор Магур
Sorry correct return self.author.username -- 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

Django Blog app (Error): __str__ returned non-string (type User)

2018-10-11 Thread Ігор Магур
In class Comment in str method you need to user.username or something you want as string, now you are returning full user object. Ex def __str__(self): return user.username -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from th

Django Blog app (Error): __str__ returned non-string (type User)

2018-10-11 Thread robertlls4480
I'm trying to make a blog website app and i am trying to make a comment feature. But when i try to add a comment with the admin page i get an error. The Error: models.py from django.db import models from django.utils import timezone from django.contrib.

Re: Build Django Blog

2017-08-26 Thread Vernon Swanepoel
Hello Zayden, I don't often comment here, but I've build a number of blog type apps, and I'm currently looking at building a blog for a Python society in my area, so it's something I've been thinking about. Clearly, there are other options other than Django if your goal is to set up a blog eas

Re: Build Django Blog

2017-08-26 Thread Gerardo Palazuelos Guerrero
Hi Zayden, I don't have an answer for your question. But seems you need a definition and conceptual idea of what a blog should be. If that is the case, maybe you want to check what the Wordpress Post features are or buddy press features. The are quite few systems providing those features. Rega

Build Django Blog

2017-08-26 Thread Zayden Rosario
Currently, I am a beginner who hardly knows how to create a post, I want to know what are the requirements to create a fully featured blog (Ex: supports edits from multiple users, post can have multiple tags, create my own administration page ..etc) please keep in mind that I know these resourc

Re: django 1.6.4 - markup / markdown (for django blog tutorial)

2014-05-05 Thread Alex Leonhardt
Thanks Brad - i had a look and didnt get it to work, but thanks to your hint I did get this to work : https://django-markup.readthedocs.org/en/latest/ with https://django-markup.readthedocs.org/en/latest/usage_templates.html Cheers! Alex On Monday, 5 May 2014 21:22:21 UTC+1, Brad Pitcher wro

Re: django 1.6.4 - markup / markdown (for django blog tutorial)

2014-05-05 Thread Brad Pitcher
django.contrib.markup has been deprecated. You could try using the standalone project that is a copy of the same code from django: pip install django_markup_deprecated Then add "markup_deprecated" to your INSTALLED_APPS instead of django.contrib.markup. - Brad Pitcher On Mon, May 5, 20

Re: django 1.6.4 - markup / markdown (for django blog tutorial)

2014-05-05 Thread Alex Leonhardt
fwiw - this is the tutorial I was trying : http://www.creativebloq.com/netmag/get-started-django-7132932 it mentions django.contrib.markup ... but that doesnt seem to work :\ On Monday, 5 May 2014 16:44:47 UTC+1, Alex Leonhardt wrote: > > Hi all, > > am new to django and followed a tiny tutori

django 1.6.4 - markup / markdown (for django blog tutorial)

2014-05-05 Thread Alex Leonhardt
Hi all, am new to django and followed a tiny tutorial to start off - I wanted to add the ability to use Markdown syntax in the blog posts. It was suggested to use django.contrib.markup, but that wont work anymore ( i guess it's been removed ) - what do I need to use Markdown in my posts ? Tha

Re: Anyone tried a pre-existing django blog app like wordpress to add to their site?

2013-12-03 Thread Mario Gudelj
I like Zinnia. It's a gun. I had issues understanding some of the code as it's all built in CBVs, but once you get your head around it it rocks. Has everything a blog should have and documentation is great. Even a WP import tool is in it! https://github.com/Fantomas42/django-blog-zin

Re: Anyone tried a pre-existing django blog app like wordpress to add to their site?

2013-12-03 Thread Tom Lockhart
On 2013-12-03, at 7:02 PM, Creed Mangrum wrote: > Just wondering if there is any general feelings or inclinations to any good > ones out there. Thanks! I've been using Mezzanine as the underpinnings for a bigger site. I can recommend it highly. Not familiar with others though.

Anyone tried a pre-existing django blog app like wordpress to add to their site?

2013-12-03 Thread Creed Mangrum
Just wondering if there is any general feelings or inclinations to any good ones out there. 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

Django Blog Engines that Run on GAE

2011-05-07 Thread Mark Curphey
I am looking for some base code to start a side-project without having to re-invent the wheel. Are there any good Django Blog Engines that are open source (non GPL) and work (or can easily be hacked to work) on the Google App Engine (i.e. non-rel)? Most the GitHub projects look stale or inert

Re: django blog

2009-10-17 Thread Japan Shah
yes that's cool, I have downloaded code from github, and it worked fine. thanks. 2009/10/17 David Paccoud > > Hi, > > Have you installed all the dependancies listed in the README file and > declared the django apps in your settings.py? > > Note that the project is now hosted on github. You may

Re: django blog

2009-10-17 Thread David Paccoud
Hi, Have you installed all the dependancies listed in the README file and declared the django apps in your settings.py? Note that the project is now hosted on github. You may want to grab the lastest version there. David On Fri, Oct 16, 2009 at 8:18 PM, lafada wrote: > > Hi, > >      I'm tryi

django blog

2009-10-16 Thread lafada
Hi, I'm trying to integrate django basic apps blog Application. I installed it on my project. the blog index templates works fine, but post details is now working, shows me following error. TemplateSyntaxError at /blog/2009/oct/15/hello-world/ Caught an exception while rendering: Reverse

Re: Writers for a Django Blog

2009-09-19 Thread thornomad
I believe that functionality is available at: http://www.djangoproject.com/community/ On Sep 19, 4:46 pm, Adam Olsen wrote: > On Sat, Sep 19, 2009 at 1:45 PM, Vitaly Babiy wrote: > > Hey guys, > > I am looking for people would be interested in writing articles for a > > django/web development

Re: Writers for a Django Blog

2009-09-19 Thread Adam Olsen
On Sat, Sep 19, 2009 at 1:45 PM, Vitaly Babiy wrote: > Hey guys, > I am looking for people would be interested in writing articles for a > django/web development blog, if you are interested please let me know. > What would be cool is if I could register my own RSS feed with your site, and any en

Writers for a Django Blog

2009-09-19 Thread Vitaly Babiy
Hey guys, I am looking for people would be interested in writing articles for a django/web development blog, if you are interested please let me know. Thanks, Vitaly Babiy --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Group

Re: Django blog for google app engine

2009-03-13 Thread Fred Chevitarese
Thanks!! I´ll take a look ... It´s look nice ;) 2009/3/12 Jacob Kaplan-Moss > > On Tue, Mar 10, 2009 at 12:20 PM, Flank wrote: > > where can i get open source blog on django for GAE? > > App Engine is new enough you'll probably have better luck writing one > yourself. Here's a place to start:

Re: Django blog for google app engine

2009-03-12 Thread Jacob Kaplan-Moss
On Tue, Mar 10, 2009 at 12:20 PM, Flank wrote: > where can i get open source blog on django for GAE? App Engine is new enough you'll probably have better luck writing one yourself. Here's a place to start: http://www.42topics.com/dumps/appengine/doc.html Jacob --~--~-~--~~-

Django blog for google app engine

2009-03-10 Thread Flank
where can i get open source blog on django for GAE? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this gr

Re: Building a Django Blog: Change month "feb" to "02" in URL

2009-02-12 Thread twampss
Hi Frank, Thanks for the reference link. The month_format argument was exactly what I was looking for. I also didn't know that the default was set to '%b'. Once I explicitly added it in, it worked. I did this: entry_info_dict = { 'queryset': Entry.live.all(), 'date_field': 'p

Re: Building a Django Blog: Change month "feb" to "02" in URL

2009-02-11 Thread Frank Becker
twampss [2009-02-11, 23:14 +0100]: Hi, > I've been following James Bennett's "Practical Django Projects" > alongside of Brett Haydon's very helpful post > http://blog.haydon.id.au/2008/08/notes-on-practical-django-projects.html > and came across an issue when wanting to change the format of the U

Building a Django Blog: Change month "feb" to "02" in URL

2009-02-11 Thread twampss
I've been following James Bennett's "Practical Django Projects" alongside of Brett Haydon's very helpful post http://blog.haydon.id.au/2008/08/notes-on-practical-django-projects.html and came across an issue when wanting to change the format of the URLs in my blog application. For any blog entry,

django blog which uses staticgenerator?

2008-06-19 Thread lgr888999
There are a shitload of blogging apps for django, i know. But is there any which supports StaticGenerator that you are aware off? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this g

Re: sync flickr to my django blog

2008-03-06 Thread cjl
Check out: http://code.google.com/p/django-syncr/ -cjlesh --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from

Re: sync flickr to my django blog

2008-03-05 Thread stranger
HEllo group can anyone help me in this regard please... On Mar 4, 10:50 am, stranger <[EMAIL PROTECTED]> wrote: > hello group, > >       First of all I would like to thank this community for helping me > in solve my doubts regarding  django. And here I am again with another > one. > > I am cr

sync flickr to my django blog

2008-03-04 Thread stranger
hello group, First of all I would like to thank this community for helping me in solve my doubts regarding django. And here I am again with another one. I am creating my blog using django and I want to integrate my flickr with my blog. I am using the code from here. http://www.djangosni

Re: posting programmaticaly on a Django blog

2007-05-16 Thread Christian M Hoeppner
> Hi, > > I would like to now if it's possible to make a Python script (one > argument a text file name) > witch will upload a post on a basic blog (asking for title and post > itself, with options: image, template language). > > If so, what should I study ? > > Thanks. If from a remote box, you

posting programmaticaly on a Django blog

2007-05-16 Thread Tool69
Hi, I would like to now if it's possible to make a Python script (one argument a text file name) witch will upload a post on a basic blog (asking for title and post itself, with options: image, template language). If so, what should I study ? Thanks. --~--~-~--~~~-

Re: Django Blog software

2006-08-20 Thread Paulo
oftware is following the typical trend of > becoming more bloated over time with marginal featuers. A Django blog > app that only does what's most important, and works immediately, would > probably accelerate framework adoption. > > That brings to mind the need for a Django-forge-l

Re: Re: Django Blog software

2006-08-20 Thread Jon Atkinson
> That brings to mind the need for a Django-forge-like place where apps > could get uploaded, categorized, and rated; Plone and Joomla have this, > for instance. But that's another thread... > One worth starting, IMHO :-) --Jon --~--~-~--~~~---~--~~ You received

Re: Django Blog software

2006-08-20 Thread Shev
features? And what existing blog software does it best? I'm suspecting that blog software is following the typical trend of becoming more bloated over time with marginal featuers. A Django blog app that only does what's most important, and works immediately, would probably accelerate framew

Re: Django Blog software

2006-08-19 Thread Matthias Urlichs
David Larlet wrote: > BTW, it's really easy to make your own. > Sure it is. I mean, yeah, a quick and dirty blog is child's play with Django, *but* then you want a sensible CSS structure for it, and a cached RSS feed, and trackback (both directions please) and pingback (ditto) and "old-style" com

Re: Django Blog software

2006-08-13 Thread Pedro Lima
For a more complete blog application I suggest checking limodou's woodlog http://www.djangocn.org/help/#does-woodlog-is-open-source --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to t

Re: Django Blog software

2006-08-13 Thread [EMAIL PROTECTED]
Say it's GPL :) I've used "metrohacker" template which can be found on oswd.org --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.co

Re: Re: Re: Django Blog software

2006-08-13 Thread Jon Atkinson
27;t take much > > > work, but I was just wondering if there was anything already out there. > > > Any ideas? > > > > > > > You can check the Ross one: > > http://www.rossp.org/blog/2006/jun/08/django-blog-redux/ > > or directly browse the source

Re: Django Blog software

2006-08-13 Thread David Larlet
wondering if there was anything already out there. > Any ideas? > You can check the Ross one: http://www.rossp.org/blog/2006/jun/08/django-blog-redux/ or directly browse the source code of the djangoproject site: http://code.djangoproject.com/browser/djangoproject.com. Both are interesting to

Re: Django Blog software

2006-08-13 Thread [EMAIL PROTECTED]
there is on the mailing list my "miniblog" http://groups.google.com/group/django-users/browse_thread/thread/d8ae2e3dc533e214/75d2281e490f1d83?lnk=gst&q=miniblog&rnum=1#75d2281e490f1d83 It isn't feature compleate but it has news + comments ;) --~--~-~--~~~---~--~~

Django Blog software

2006-08-13 Thread [EMAIL PROTECTED]
Hi, I've been playing with Django for a few weeks, and I've been looking for some blog software which I can use for my blog and also play with extending to help me learn a little more about Django. I searched the Django wiki, and does as many Google queries as I can think of, but I can't find any

Re: Django Blog Code

2006-07-13 Thread Jeremy Dunck
On 7/13/06, keukaman <[EMAIL PROTECTED]> wrote: > {% free_comment_form for blog.entry object.id %} is highlighted as an > error in the template. Based on the settings file here: http://code.djangoproject.com/svn/djangoproject.com/django_website/settings.py They're using the django.contrib.commen

Re: Django Blog Code

2006-07-13 Thread keukaman
I get an attibute error and a template error when I try to view the detail of a post: 'NoneType' object has no attribute '_default_manager' is the attribute error. {% free_comment_form for blog.entry object.id %} is highlighted as an error in the template. Can you give me some idea of where to

Re: Django Blog Code

2006-07-12 Thread Jeremy Dunck
On 7/12/06, Jeremy Dunck <[EMAIL PROTECTED]> wrote: > On 7/12/06, keukaman <[EMAIL PROTECTED]> wrote: > > > > Thanks Jeremy! This group has been outstanding in getting me going with > > this outstanding framework. > > > > Do you know of a basic template I can use to display the blog? > > I believe

Re: Django Blog Code

2006-07-12 Thread Jeremy Dunck
On 7/12/06, keukaman <[EMAIL PROTECTED]> wrote: > > Thanks Jeremy! This group has been outstanding in getting me going with > this outstanding framework. > > Do you know of a basic template I can use to display the blog? I believe this is the matching set of templates: http://code.djangoproject.c

Re: Django Blog Code

2006-07-12 Thread keukaman
Thanks Jeremy! This group has been outstanding in getting me going with this outstanding framework. Do you know of a basic template I can use to display the blog? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Dj

Re: Django Blog Code

2006-07-12 Thread Jeremy Dunck
On 7/12/06, keukaman <[EMAIL PROTECTED]> wrote: > > The blog code located at > http://code.djangoproject.com/svn/djangoproject.com/django_website/apps/blog/ > has a directory called "/templatetags" that has a file called > "latestblogentry.py" and __init__.py. > > If my structure is as follows: >

Django Blog Code

2006-07-12 Thread keukaman
The blog code located at http://code.djangoproject.com/svn/djangoproject.com/django_website/apps/blog/ has a directory called "/templatetags" that has a file called "latestblogentry.py" and __init__.py. If my structure is as follows: mysite/blog can anyone tell me where this templatetags direct