Re: integrating themes in django

2019-01-14 Thread Jani Tiainen
Hi,

Django is web development framework, in other words it's more a low level
library that you use when programming web sites rather than CMS like
wordpress is and thus there isn't really concept of themes in Django.

What Django can do is to render for example HTML and link it to CSS for
styling your web application, but you have to program all this yourself.

If you're more interested in pre-made CMS applications with Django, you may
want to take a look at Wagtail or Django-CMS


On Mon, Jan 14, 2019 at 4:31 PM Out Reach 
wrote:

> Hi I'm Looking for a theme like that https://www.couponsmith.com in
> Django framework please tell me where can I find these types of themes.
>
> On Thursday, May 10, 2018 at 9:10:58 AM UTC+5, Hitesh Goyal wrote:
>>
>> Hi team, I am new to Django.
>> How can i integrate ready-made website themes in a django project ?
>>
> --
> 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 django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/051f0cfd-05a0-40fc-afd1-793da8f1e75f%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>


-- 
Jani Tiainen

- Well planned is half done, and a half done has been sufficient before...

-- 
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 django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAHn91ofBtgrkaC_E2Ka4y_bjju18xYvcCvPXZ4CH%2BT7G2x8-cA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: integrating themes in django

2019-01-14 Thread Out Reach
Hi I'm Looking for a theme like that https://www.couponsmith.com in Django 
framework please tell me where can I find these types of themes.

On Thursday, May 10, 2018 at 9:10:58 AM UTC+5, Hitesh Goyal wrote:
>
> Hi team, I am new to Django.
> How can i integrate ready-made website themes in a django project ?
>

-- 
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 django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/051f0cfd-05a0-40fc-afd1-793da8f1e75f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: integrating themes in django

2018-05-10 Thread James Farris
This should give you an idea of what you have to do
Templates: https://tutorial.djangogirls.org/en/html/
Statics: https://tutorial.djangogirls.org/en/css/

On Thu, May 10, 2018 at 12:27 AM, Hitesh Goyal  wrote:

> Ok . Could you please provide a sample source where it has been
> implemented .
>
> On Thursday, May 10, 2018 at 12:48:44 PM UTC+5:30, James Farris wrote:
>>
>> Unless someone knows of an easier way, you will have to do some work to
>> get html/css/js themes integrated as you will have to create templates for
>> html and a static directory for css and js.  Then hook the css and js into
>> the template files you create.  It's not like a Drupal or Wordpress site
>> where you download a theme and install it.  It will take some finessing for
>> a ready made website theme to be integrated into a Django project.
>>
>> It sounds complex, but it really isn't that hard.
>>
>> On Wed, May 9, 2018 at 9:10 PM, Hitesh Goyal  wrote:
>>
>>> Hi team, I am new to Django.
>>> How can i integrate ready-made website themes in a django project ?
>>>
>>> --
>>> 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...@googlegroups.com.
>>> To post to this group, send email to django...@googlegroups.com.
>>> Visit this group at https://groups.google.com/group/django-users.
>>> To view this discussion on the web visit https://groups.google.com/d/ms
>>> gid/django-users/c54ea1fa-6cc2-413a-a841-9235a93469d4%40googlegroups.com
>>> 
>>> .
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>>
>> --
> 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 django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/django-users/344559c4-ecc3-4e21-8a2d-e842e078066e%40googlegroups.com
> 
> .
>
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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 django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAE-E-_1Rnvt0-SGTk_iPXoW66rSHXqgeqr3ZM-4qXFy-wzQ2oQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: integrating themes in django

2018-05-10 Thread Hitesh Goyal
Ok . Could you please provide a sample source where it has been implemented 
. 

On Thursday, May 10, 2018 at 12:48:44 PM UTC+5:30, James Farris wrote:
>
> Unless someone knows of an easier way, you will have to do some work to 
> get html/css/js themes integrated as you will have to create templates for 
> html and a static directory for css and js.  Then hook the css and js into 
> the template files you create.  It's not like a Drupal or Wordpress site 
> where you download a theme and install it.  It will take some finessing for 
> a ready made website theme to be integrated into a Django project.
>
> It sounds complex, but it really isn't that hard.
>
> On Wed, May 9, 2018 at 9:10 PM, Hitesh Goyal  > wrote:
>
>> Hi team, I am new to Django.
>> How can i integrate ready-made website themes in a django project ?
>>
>> -- 
>> 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...@googlegroups.com .
>> To post to this group, send email to django...@googlegroups.com 
>> .
>> Visit this group at https://groups.google.com/group/django-users.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/django-users/c54ea1fa-6cc2-413a-a841-9235a93469d4%40googlegroups.com
>>  
>> 
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>

-- 
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 django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/344559c4-ecc3-4e21-8a2d-e842e078066e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: integrating themes in django

2018-05-10 Thread James Farris
Unless someone knows of an easier way, you will have to do some work to get
html/css/js themes integrated as you will have to create templates for html
and a static directory for css and js.  Then hook the css and js into the
template files you create.  It's not like a Drupal or Wordpress site where
you download a theme and install it.  It will take some finessing for a
ready made website theme to be integrated into a Django project.

It sounds complex, but it really isn't that hard.

On Wed, May 9, 2018 at 9:10 PM, Hitesh Goyal  wrote:

> Hi team, I am new to Django.
> How can i integrate ready-made website themes in a django project ?
>
> --
> 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 django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/django-users/c54ea1fa-6cc2-413a-a841-9235a93469d4%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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 django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAE-E-_2pjq65bYW0RuMHd7XrD3i94j9r_rWi0sCXY2hLFYXhNw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


integrating themes in django

2018-05-09 Thread Hitesh Goyal
Hi team, I am new to Django.
How can i integrate ready-made website themes in a django project ?

-- 
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 django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/c54ea1fa-6cc2-413a-a841-9235a93469d4%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.