DoesNotExist at /admin/blog/blog/add/: blog matching query does not exist

2022-09-13 Thread Jaap van Wingerde
Suddenly I can no longer add blogs to Django. Django says 'blog matching query does not exist'. That seems strange to me because I want to add something to the database and not request a blog. What could be going on here? admin.py: class blogadmin(admin.ModelAdmin): def save_

Re: Blog application with django

2022-07-26 Thread Lakshyaraj Dash
I can do the backend part. If you need bootstrap in frontend then tell me. But I can build a minimal version of the blog... On Tue, Jul 26, 2022, 21:03 MAHESH KUMAR wrote: > Hi all > > https://www.health.harvard.edu/mind-and-mood/relaxation-techniques-breath-control-helps-quell-erra

Re: Blog application with django

2022-07-26 Thread Lakshyaraj Dash
>>> https://www.health.harvard.edu/mind-and-mood/relaxation-techniques-breath-control-helps-quell-errant-stress-response >>> >>> I want this type blog application please help me anybody coding part >>> please >>> >>> >>> Thanks & Re

Re: Blog application with django

2022-07-26 Thread MAHESH KUMAR
SH KUMAR" wrote: > >> Hi all >> >> https://www.health.harvard.edu/mind-and-mood/relaxation-techniques-breath-control-helps-quell-errant-stress-response >> >> I want this type blog application please help me anybody coding part >> please >> >> >>

Re: Blog application with django

2022-07-26 Thread Ammar Mohammed
response > > I want this type blog application please help me anybody coding part please > > > Thanks & Regards > > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To unsubscribe from this

Re: Blog application with django

2022-07-26 Thread Ross Meredith
Lol. Ok, well, yes, django can be used to create a blog. But you can't really just send an email around saying you want this blog - it doesn't really work like that. Sounds like you need to learn how to use django. There are countless tutorials online. Many of them probably teach

Re: Blog application with django

2022-07-26 Thread MAHESH KUMAR
click above link in mail i want that type of Blog application On Tue, Jul 26, 2022 at 9:04 PM Ross Meredith wrote: > Sorry it's not clear what you are asking. > > On Tue, Jul 26, 2022 at 4:33 PM MAHESH KUMAR > wrote: > >> Hi all >> >> https://www.healt

Re: Blog application with django

2022-07-26 Thread Ross Meredith
Sorry it's not clear what you are asking. On Tue, Jul 26, 2022 at 4:33 PM MAHESH KUMAR wrote: > Hi all > > https://www.health.harvard.edu/mind-and-mood/relaxation-techniques-breath-control-helps-quell-errant-stress-response > > I want this type blog application please he

Blog application with django

2022-07-26 Thread MAHESH KUMAR
Hi all https://www.health.harvard.edu/mind-and-mood/relaxation-techniques-breath-control-helps-quell-errant-stress-response I want this type blog application please help me anybody coding part please Thanks & Regards -- You received this message because you are subscribed to the Go

Re: Improperly Configured at /blog/write/

2021-03-20 Thread Kelvin Sajere
for helping me with this >> >> On Sat, 20 Mar, 2021 at 7:22 PM, Omkar Parab >> wrote: >> >>> First, import slugify 👇 >>> >>> from django.template.defaultfilters import slugify >>> >>> then, >>> >>> A

Re: Improperly Configured at /blog/write/

2021-03-20 Thread Kelvin Sajere
h for helping me with this > > On Sat, 20 Mar, 2021 at 7:22 PM, Omkar Parab > wrote: > >> First, import slugify 👇 >> >> from django.template.defaultfilters import slugify >> >> then, >> >> Add this 👇 below the "def __str__()"

Re: Improperly Configured at /blog/write/

2021-03-20 Thread Noyon Barman
Thank you so much for helping me with this On Sat, 20 Mar, 2021 at 7:22 PM, Omkar Parab wrote: > First, import slugify 👇 > > from django.template.defaultfilters import slugify > > then, > > Add this 👇 below the "def __str__()" in your Blog model. >

Re: Improperly Configured at /blog/write/

2021-03-20 Thread Omkar Parab
First, import slugify 👇 from django.template.defaultfilters import slugify then, Add this 👇 below the "def __str__()" in your Blog model. def save(self, *args, **kwargs): if not self.slug: self.slug = slugify(self.blog_title) return super().save(*args

Re: Improperly Configured at /blog/write/

2021-03-20 Thread Kasper Laudrup
On 20/03/2021 12.10, Noyon Barman wrote: > Please help me what should I do now > You should learn how to write a proper question. Just posting screenshots of error messages and not even doing the minimal effort required to solve the problem yourself or take the time to describe your problem is ext

Re: Improperly Configured at /blog/write/

2021-03-20 Thread Omkar Parab
Your slug is adding extra characters after the main title. On Sat, Mar 20, 2021, 5:31 PM Omkar Parab wrote: > Looks like, the slug is not configured correctly. Post the screen-shot of > the models.py file of the "App_blog" App. > > On Sat, Mar 20, 2021, 4:48 PM Noyon Barman > wrote: > >> Please

Re: Improperly Configured at /blog/write/

2021-03-20 Thread Omkar Parab
Looks like, the slug is not configured correctly. Post the screen-shot of the models.py file of the "App_blog" App. On Sat, Mar 20, 2021, 4:48 PM Noyon Barman wrote: > Please help me what should I do now > > On Sat, Mar 20, 2021 at 12:39 PM Omkar Parab > wrote: > >> Post the screen-shot of app/

Re: Improperly Configured at /blog/write/

2021-03-19 Thread Omkar Parab
Post the screen-shot of app/urls.py file. On Sat, Mar 20, 2021, 4:05 AM Noyon Barman wrote: > > > On Sat, Mar 20, 2021 at 4:00 AM Anornymous u > wrote: > >> Send the error displayed on the browser in red >> >> On Sat, Mar 20, 2021, 00:54 Noyon Barman >> wrote: >> >>> >>> >>> On Sat, Mar 20, 20

Re: Improperly Configured at /blog/write/

2021-03-19 Thread Anornymous u
Bro, I mean send me the error displayed on the browser in red, that will help a little bit. On Sat, Mar 20, 2021, 01:36 Noyon Barman wrote: > > > On Sat, Mar 20, 2021 at 4:00 AM Anornymous u > wrote: > >> Send the error displayed on the browser in red >> >> On Sat, Mar 20, 2021, 00:54 Noyon Bar

Re: Improperly Configured at /blog/write/

2021-03-19 Thread Noyon Barman
On Sat, Mar 20, 2021 at 4:00 AM Anornymous u wrote: > Send the error displayed on the browser in red > > On Sat, Mar 20, 2021, 00:54 Noyon Barman > wrote: > >> >> >> On Sat, Mar 20, 2021 at 3:31 AM Noyon Barman >> wrote: >> >>> >>> >>> On Sat, Mar 20, 2021 at 3:26 AM Héctor Alonso Lozada Echezu

Re: Improperly Configured at /blog/write/

2021-03-19 Thread Anornymous u
Send the error displayed on the browser in red On Sat, Mar 20, 2021, 00:54 Noyon Barman wrote: > > > On Sat, Mar 20, 2021 at 3:31 AM Noyon Barman > wrote: > >> >> >> On Sat, Mar 20, 2021 at 3:26 AM Héctor Alonso Lozada Echezuría < >> ima...@gmail.com> wrote: >> >>> Exactly >>> >>> El vie, 19 ma

Re: Improperly Configured at /blog/write/

2021-03-19 Thread Anornymous u
Delete the keyword argument commit=False On Sat, Mar 20, 2021, 00:39 Noyon Barman wrote: > > > On Sat, Mar 20, 2021 at 3:26 AM Héctor Alonso Lozada Echezuría < > ima...@gmail.com> wrote: > >> Exactly >> >> El vie, 19 mar 2021 a las 15:25, Anornymous u () >> escribió: >> >>> Line 17 not 14 >>> >>

Re: Improperly Configured at /blog/write/

2021-03-19 Thread Héctor Alonso Lozada Echezuría
Exactly El vie, 19 mar 2021 a las 15:25, Anornymous u () escribió: > Line 17 not 14 > > On Sat, Mar 20, 2021, 00:22 Héctor Alonso Lozada Echezuría < > ima...@gmail.com> wrote: > >> Line 14: fields not feilds >> >> El vie, 19 mar 2021 a las 15:17, Noyon Barman () >> escribió: >> >>> What happens h

Re: Improperly Configured at /blog/write/

2021-03-19 Thread Anornymous u
Line 17 not 14 On Sat, Mar 20, 2021, 00:22 Héctor Alonso Lozada Echezuría wrote: > Line 14: fields not feilds > > El vie, 19 mar 2021 a las 15:17, Noyon Barman () > escribió: > >> What happens here? How do I solve this problem? >> >> -- >> You received this message because you are subscribed to

Re: Improperly Configured at /blog/write/

2021-03-19 Thread Anornymous u
Share source for blog model On Sat, Mar 20, 2021, 00:17 Noyon Barman wrote: > What happens here? How do I solve this problem? > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To unsubscribe from this gro

Re: Improperly Configured at /blog/write/

2021-03-19 Thread Héctor Alonso Lozada Echezuría
Line 14: fields not feilds El vie, 19 mar 2021 a las 15:17, Noyon Barman () escribió: > What happens here? How do I solve this problem? > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To unsubscribe from this group and stop receiving em

Re: how to Sent rich Content or Make content rich in blog django based site.

2021-03-18 Thread Kasper Laudrup
On 18/03/2021 18.25, Shailesh Yadav wrote: > Hi, I have created one website by using Django and I am sending Mail > that is showing in normal text form. > for example, as shown below. > Screenshot 2021-03-18 at 10.50.27 PM.png, > I have seen a few Emails from other sites for example Groww where the

Re: How to create sidenav bar in an already created blog

2020-10-11 Thread Dvs Khamele
Hi do you hire contract based python/django freelancer? We can help you in this and related tasks at fair prices. Reply or send email to divy...@pythonmate.com Best Regards, Divyesh Khamele, Pythonmate On Thu, 8 Oct 2020, 7:00 pm Odedele Temitayo, wrote: > What do i need to do?,thanks. > > -- >

Re: How to create sidenav bar in an already created blog

2020-10-08 Thread Odedele Temitayo
he home view which is also the List view for posts. > > The {% block content %} Defines a block that can be overridden by child > templates, this is where the content from the other HTML file will get > injected. > > Next, we will make a small sidebar widget which will be inherited by

Re: How to create sidenav bar in an already created blog

2020-10-08 Thread Adithya Gowli
sidebar is also being injected in the base.html file this makes it globally available for pages inheriting the base file. {% block sidebar %} .card{ box-shadow: 0 16px 48px #E3E7EB; } About Us This awesome blog is made on the top of our

Re: How to create sidenav bar in an already created blog

2020-10-08 Thread Adithya Gowli
d{ box-shadow: 0 16px 48px #E3E7EB; } About Us This awesome blog is made on the top of our Favourite full stack Framework 'Django', follow up the tutorial to learn how we made it..! https://djangocentral.com/building-a-blog-application-with-django"; class="btn btn-dange

How to create sidenav bar in an already created blog

2020-10-08 Thread Odedele Temitayo
What do i need to do?,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...@googlegroups.com. To view this discussion on the web visit

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: Add search to my blog app

2020-05-20 Thread sachin chaurasiya
>From which book you have had learnt django On Wed, May 20, 2020, 9:46 PM sunday honesty wrote: > Hello everyone! I have got a question. I am a Django beginner trying to > build my first web app after completing a book. > > I made an app I called developers forum where authenticated users can po

RE: Add search to my blog app

2020-05-20 Thread Vishesh Mangla
Or one thing you can do w/o _javascript_, that is send a post request to the server through a form and then redirect to a view with a blog matching that search query.  Template: {{csrf_token}} //see the correct template tagSubmit Views:def index(request):    if request.method ==”POST

RE: Add search to my blog app

2020-05-20 Thread Vishesh Mangla
_javascript_ it that needs to be done dynamically otherwise redirect() Sent from Mail for Windows 10 From: Ali AhammadSent: 20 May 2020 22:32To: Django usersSubject: Add search to my blog app At first you should make search search template where you should put what and how you want display Then

Add search to my blog app

2020-05-20 Thread Ali Ahammad
At first you should make search search template where you should put what and how you want display Then you should write a views.py function where you should use query=request.GET[‘queer’] Object_list=Post.objects.filter(title__icontains=query) *same for the content If you want and then you shoul

RE: Re: Add search to my blog app

2020-05-20 Thread Vishesh Mangla
Then you have a better option to learn react(a frontend framework for _javascript_). You cannot do dynamic stuff on the web without using _javascript_. Sent from Mail for Windows 10 From: sunday honestySent: 20 May 2020 21:57To: django-users@googlegroups.comSubject: Re: Add search to my blog app I

Re: Add search to my blog app

2020-05-20 Thread sunday honesty
2020 21:45 > *To: *Django users > *Subject: *Add search to my blog app > > > > Hello everyone! I have got a question. I am a Django beginner trying to > build my first web app after completing a book. > > > > I made an app I called developers forum where authenticate

RE: Add search to my blog app

2020-05-20 Thread Vishesh Mangla
the #_javascript_.  Sent from Mail for Windows 10 From: sunday honestySent: 20 May 2020 21:45To: Django usersSubject: Add search to my blog app Hello everyone! I have got a question. I am a Django beginner trying to build my first web app after completing a book. I made an app I called developers

Add search to my blog app

2020-05-20 Thread sunday honesty
Hello everyone! I have got a question. I am a Django beginner trying to build my first web app after completing a book. I made an app I called developers forum where authenticated users can post something like question or code achievement and another can comment in form of answer. I want to add

how to show blog posts according to categories and the list of categories in html template?

2020-05-20 Thread Ali Ahammad
0 1 i am trying to make site with django and want to categorize each post and a category list. in the category list every category name will be shown as a list and every category name will be linked to the posts according to their categories.

Re: No module named 'blog'

2020-05-10 Thread Mukesh Badgujar
thanks problem solved On Sun, 10 May, 2020, 9:16 am sahil khan, wrote: > I think blog app is not there where manage.py file. please check and if > your blog app's location is wrong delete blog app and create again app > inside your project with correct location. >

Re: No module named 'blog'

2020-05-09 Thread sahil khan
I think blog app is not there where manage.py file. please check and if your blog app's location is wrong delete blog app and create again app inside your project with correct location. New app command: Django-admin startapp On Sat, 9 May 2020, 7:26 pm sri vishva, wrote: > Try cr

Re: No module named 'blog'

2020-05-09 Thread sri vishva
Try creating a new app Blog using >>pip install django-admin startapp Blog And now replace the existing files with your contents On Fri, 8 May 2020, 4:22 pm Mukesh Badgujar, wrote: > First... I... created Project at my machine... then... uploaded to > github then from

Re: No module named 'blog'

2020-05-08 Thread Mukesh Badgujar
27;blog.apps.BlogConfig', >> 'shop.apps.shopConfig', >> >> one thing is that, i copied this app folder frm my other project, this is >> not created here >> >> >> On Sunday, 9 August 2015 22:43:38 UTC+5:30, Robin Lery wrote: >>> &g

Re: No module named 'blog'

2020-05-07 Thread Mohsen Pahlevanzadeh
er frm my other project, this is > not created here > > > On Sunday, 9 August 2015 22:43:38 UTC+5:30, Robin Lery wrote: >> >> Did you add your 'blog' app in the installed apps in settings.py? >> >> On Sun, Aug 9, 2015 at 10:35 PM, Maggie Chang >>

Re: No module named 'blog'

2020-05-07 Thread Mukesh Badgujar
already added 'home.apps.HomeConfig', 'blog.apps.BlogConfig', 'shop.apps.shopConfig', one thing is that, i copied this app folder frm my other project, this is not created here On Sunday, 9 August 2015 22:43:38 UTC+5:30, Robin Lery wrote: > >

Re: Getting approval from Admin first before posting a blog in Django

2020-04-21 Thread Motaz Hejaze
templates On Wed, Apr 22, 2020 at 3:04 AM Ahmed Khairy wrote: > Hi all, > > I have made a blog as a project and I have set users to submit posts for > the blog directly but i want to direct this post to the admin first for > approval before showing on the website. here is the Post Cr

Getting approval from Admin first before posting a blog in Django

2020-04-21 Thread Ahmed Khairy
Hi all, I have made a blog as a project and I have set users to submit posts for the blog directly but i want to direct this post to the admin first for approval before showing on the website. here is the Post Create View Class. class PostCreateView(CreateView): model = Post fields

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: Blog project help

2020-03-18 Thread Motaz Hejaze
for me. >> Actually I combined two projects, but, I think my blog/post-detail is not >> working >> >> On Wed, Mar 18, 2020 at 6:00 PM Python Programming < >> mahdipyton...@gmail.com> wrote: >> >>> Hello my friend this site is for you: >>&

Re: Blog project help

2020-03-18 Thread sanka nanaji
sed that, but it's not working for me. > Actually I combined two projects, but, I think my blog/post-detail is not > working > > On Wed, Mar 18, 2020 at 6:00 PM Python Programming < > mahdipyton...@gmail.com> wrote: > >> Hello my friend this site is for you: >

Re: Blog project help

2020-03-18 Thread Luka Nik
Yes, I used that, but it's not working for me. Actually I combined two projects, but, I think my blog/post-detail is not working On Wed, Mar 18, 2020 at 6:00 PM Python Programming wrote: > Hello my friend this site is for you: > > https://djangocentral.com/building-a-blog-ap

Re: Blog project help

2020-03-18 Thread Python Programming
Hello my friend this site is for you: https://djangocentral.com/building-a-blog-application-with-django/ ‫‪Luka Nik‬‏ <‪luka2...@gmail.com‬‏> در تاریخ چهارشنبه ۱۸ مارس ۲۰۲۰ ساعت ۱۹:۵۷ نوشت:‬ > Hello fellow djangos, > > I have a slight problem with my project, a simple solut

Blog project help

2020-03-18 Thread Luka Nik
Hello fellow djangos, I have a slight problem with my project, a simple solution is needed I believe, but I couldn't figure it out. I wanted to add a comment section for my blog posts. Here is the code: Models.py: class Comment(models.Model): post = models.ForeignKey(Post, on_d

Good stand alone blog app for django 3.0 >

2020-03-14 Thread Danny Blaker
Hi! I've been testing a few good blog apps (Pinax, Pupet/Wagtail - https://github.com/APSL/puput) etc - how ever they are currently only available for django 2. Does any one know a similar blog app that is django 3 compatible? I have been looking to no avail. Many Thanks! -- You rec

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

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 hav

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: &g

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

2020-01-19 Thread maninder singh Kumar
ook : Django by Example 2. i install a > blog, it show blog post list, but when i click post title, it does not go > to post detail.html page. > anyone can tell me where i can wrong? > Thank you very much! > > > > -- > You received this message because you are subscrib

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

2020-01-19 Thread amanda
日星期日 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?

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

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

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

Re: Blog styling

2019-12-26 Thread sagar podilapu
Good luck. Now what help do you need? On Thu, Dec 26, 2019 at 6:34 PM Anwar Ali wrote: > Hi guys, > > I am converting my site to A.I blog so I wanna know what styles of writing > and options I have for giving my blog a decent look like many WordPress > blogs have ... like s

Blog styling

2019-12-26 Thread Anwar Ali
Hi guys, I am converting my site to A.I blog so I wanna know what styles of writing and options I have for giving my blog a decent look like many WordPress blogs have ... like styling, writing options in comments and posts etc. Thanks in advance Annu -- You received this message because

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: reg: creating blog topic in database

2019-11-19 Thread 'Amitesh Sahay' via Django users
I have got a work around though, and yes, those two links were handy. Regards, Amitesh On Monday, 18 November, 2019, 6:27:01 PM IST, 'Amitesh Sahay' via Django users wrote: Hi, To be honest, I have tried following the django docs link that you have shared. But I failed to unders

Re: reg: creating blog topic in database

2019-11-18 Thread 'Amitesh Sahay' via Django users
Hi, To be honest, I have tried following the django docs link that you have shared. But I failed to understand the relevance . I have little knowledge. So, I might be little clueless here. Regards, Amitesh On Saturday, 16 November, 2019, 5:00:11 PM IST, Integr@te System wrote:

Re: reg: creating blog topic in database

2019-11-16 Thread Integr@te System
Hi Issuer Follow to part 3 - 4 and check docs for some thing else around you need https://docs.djangoproject.com/en/2.2/ref/templates/language/ https://docs.djangoproject.com/en/2.2/intro/tutorial04/ On Sat, Nov 16, 2019, 16:40 'Amitesh Sahay' via Django users < django-users@googlegroups.com> wr

reg: creating blog topic in database

2019-11-16 Thread 'Amitesh Sahay' via Django users
Hello All, I have created the two models to create post on desired topic, as well as to get the comments from the visitors. But, I am not able to figure out, how to connect that model to my HTML page. I know how to create a static HTML pages for each topic,and write page content in tags. whic

Re: Handling blog posts

2019-11-14 Thread John McClain
Kasper, I get your point but... He might be wanting to learn how to add/edit/delete posts on a blog he is creating! John On Wed, 13 Nov 2019 at 23:33, Kasper Laudrup wrote: > Hi Hedrick, > > On 13/11/2019 21.40, Hedrick wrote: > > Anyone with the good links on how handle n

RE: Handling blog posts

2019-11-13 Thread Kasper Laudrup
Hi Hedrick, On 13/11/2019 21.40, Hedrick wrote: > Anyone with the good links on how handle news/posts on my Blog App. > Thanks > Unless we have some mind readers on this mailing list, I'm fairly certain no one knows what my "Blog App" is. Maybe share some details and

Handling blog posts

2019-11-13 Thread Hedrick
Anyone with the good links on how handle news/posts on my Blog App. 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-user

Multi user blog

2019-10-03 Thread Ankita Gupta
I have tried wagtail-cms but I don't know how to add multiple users and heirarichal approach in that. -- 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-us

Multi user blog

2019-10-03 Thread Ankita Gupta
Does anyone know of a good project mad din django with following requirements.? Requirements- Multiple user can post daily blogs. Heirarichal (multi level) users like college level system where users have different destinations, be it student, mentor, Dean etc. Weekly report management system f

Multi user blog

2019-10-03 Thread Ankita Gupta
Please ignore auto correct errors. -- 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

Blog or link sharing in the community page

2019-07-24 Thread Matt Zand
Hi, I shared one blog post last week in community section. It does not show up. https://www.djangoproject.com/community/ Can someone help me out. My article links was below: https://myhsts.org/upload-and-process-website-cvs-file-using-python-django.html and RSS link https://myhsts.org

Re: Create a multitab home page of a blog

2019-07-16 Thread Jani Tiainen
ty much new to Django, so I cannot figure this out: > > I have the home page and the way to post updates in my blog, but I want to > sort the posts into categories. Like sports, fitness, politics. But I want > to do it into two lists of multiple tabs, one horizontal and one vertical.

Create a multitab home page of a blog

2019-07-15 Thread Nicolas Huergo
Hey! I'm pretty much new to Django, so I cannot figure this out: I have the home page and the way to post updates in my blog, but I want to sort the posts into categories. Like sports, fitness, politics. But I want to do it into two lists of multiple tabs, one horizontal and one vertical.

Getting posts of a category in blog application

2019-06-26 Thread Gaurav Sahu
I want to grab all the posts of a particular category. I am passing th url like this: {% url 'blog:post_list' %}?category={{ cat }}. But I am not able how to return the queryset for posts of the category cat passed in the url. my Post model: class Post(models.Model): title = models.CharFiel

Specific Blog Post not showing whole post after clicking link

2019-04-28 Thread silverstrings026
I have a personal_blog app that links to a full view of the post the user clicked on. I had it working but had to change the code so only the author could see it and somehow that ruined the fix. it links fine to the post, shows post id in the url (i.e 127.0.0.1:8000/personal_blog/1/ ) but no pos

Re: Blog sharing

2019-04-24 Thread Soumen Khatua
I know I can do that by using api. Do you have any source code for that? On Thu, 25 Apr 2019, 05:20 Nitesh Saini, wrote: > By using http request you can store content of your blog and create a bot > which will use Instagram api, Twitter api etc and can upload your blog. > > On Thu,

Re: Blog sharing

2019-04-24 Thread Soumen Khatua
Can you share any link related to these concept??? On Thu, 25 Apr 2019, 01:42 Makori Breens, wrote: > Easy, there are several automatic sharing services out there...some free > > On Wed, Apr 24, 2019, 10:41 PM Soumen Khatua > wrote: > >> Hi folks, >> >> I want to make on blogger website and I w

Re: Blog sharing

2019-04-24 Thread Nitesh Saini
By using http request you can store content of your blog and create a bot which will use Instagram api, Twitter api etc and can upload your blog. On Thu, 25 Apr 2019, 1:42 am Makori Breens Easy, there are several automatic sharing services out there...some free > > On Wed, Apr 24, 2019, 10

Re: Blog sharing

2019-04-24 Thread Makori Breens
Easy, there are several automatic sharing services out there...some free On Wed, Apr 24, 2019, 10:41 PM Soumen Khatua wrote: > Hi folks, > > I want to make on blogger website and I want to share them with social > media's timeline like Facebook, instragam, twitter etc. But for each post > genera

Blog sharing

2019-04-24 Thread Soumen Khatua
Hi folks, I want to make on blogger website and I want to share them with social media's timeline like Facebook, instragam, twitter etc. But for each post generate the embed code is little bit time consuming. So how I can write a script where for each post can be redirect to Facebook or twitter We

Re: Blog application

2019-04-01 Thread Alison Mukoma
Regards, > > On Mon, Apr 1, 2019 at 3:03 PM Thomas Mathias > wrote: > >> Hello guys i have a django blog app and wanted to fetch all the post of >> the logged in user such that he is able to delete them.help guys >> >> -- >> You received this message because y

Re: Blog application

2019-04-01 Thread Omar Abou Mrad
Dear Thomas, A little bit more information would give us more insight on how to help you. What are you currently struggling with? Can you show us your models code? Regards, On Mon, Apr 1, 2019 at 3:03 PM Thomas Mathias wrote: > Hello guys i have a django blog app and wanted to fetch all

Blog application

2019-04-01 Thread Thomas Mathias
Hello guys i have a django blog app and wanted to fetch all the post of the logged in user such that he is able to delete them.help guys -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiv

Blog post that look like pages in open book

2019-03-25 Thread MJ
Hello, I have an idea for a simple blog site that look like a open book. For a simple prototype this is only text nothing fancy, no animation of turning page and so on. But I stumble on a problem with presenting simple text. First I assume that every page in the "book" is dif

Been having problems getting things running correctly on my Vps doing the blog tutorial. having problems loading mysql db

2019-01-22 Thread RETAIL CYBER
I'm following your tutorial here https://docs.djangoproject.com/en/2.0/intro/tutorial02/ I had to goto a different post to find out how to do the mysql and got stuck the other tutorial told me this is how you connect. my vps has the following db made since thats what the django polls tutorial to

Re: Prepopulate blog in b.entry_set.all()[i].blog ?

2018-10-31 Thread Tim Graham
arsten Fuchs: > > Dear Django group, > > > > with Django 1.11.15, using the example models Blog and Entry at > > < > https://docs.djangoproject.com/en/2.1/topics/db/queries/#related-objects> > > for reference, I have code like this: > > >

Re: Prepopulate blog in b.entry_set.all()[i].blog ?

2018-10-20 Thread Carsten Fuchs
Can anyone help please? Am 2018-10-11 um 16:58 schrieb Carsten Fuchs: Dear Django group, with Django 1.11.15, using the example models Blog and Entry at <https://docs.djangoproject.com/en/2.1/topics/db/queries/#related-objects> for reference, I have code like this:

Re: NoReverseMatch at /blog/

2018-10-15 Thread Gaurav Toshniwal
gt; > hi I have work on blog project but when I try to go to post_list url > django go to the post_detail ulr and give me this error and I don`t know > why > there are 3 image for app url , config url and error > and this is link on github > [image: Screenshot from 2018-10

Re: Blog app Error: NoReverseMatch at /post/14/

2018-10-12 Thread Robert CR
is it because i have forgotten to import CommentForm? -- 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

Re: Blog app Error: NoReverseMatch at /post/14/

2018-10-12 Thread Robert CR
then a new error pops up: [image: Udklip3.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 post to this group

Re: Blog app Error: NoReverseMatch at /post/14/

2018-10-12 Thread daniel main
rm.is_valid():* > *comment = form.save(commit=False)* > *comment.post = post* > *comment.save()* > *return redirect('blog:post_detail', slug=post.slug)* > *else:* > *form = CommentForm()* > *template =

  1   2   3   4   5   6   >