Re: Background pattern files on S3 not being found while hosted on Heroku

2013-06-25 Thread Vincent Fulco
retried #3 without quotes and link works now. -- 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, s

Re: Background pattern files on S3 not being found while hosted on Heroku

2013-06-23 Thread Vincent Fulco
Should add running the normal django-storages, boto setup for serving static from S3. On Sunday, June 23, 2013 9:45:40 AM UTC-5, Vincent Fulco wrote: > > Verified S3 files are there and app on Heroku finds custom.css as other > bits come thru correctly. > > Within body{} of

Background pattern files on S3 not being found while hosted on Heroku

2013-06-23 Thread Vincent Fulco
Verified S3 files are there and app on Heroku finds custom.css as other bits come thru correctly. Within body{} of custom.css have tried the following based on scouring the Net help sites (assume same for background:url and background-image:url): 1) url(img/backgrounds/foo.png) ref'ed to STAT

Simple Static Content Site on Heroku?

2013-06-16 Thread Vincent Fulco
Fairly new to the framework and have been reading a ton of material. While I have found a couple of great git repos using Bootstrap with Django, I haven't found too many examples of dead simple sites other than some single page blogs. I am working on an informational site with at most 5 page

Re: How to run cdn link in a local setup without screwed up hyperlink?

2013-04-13 Thread Vincent Fulco
[SOLVED] Oddly, copied right from an online resource and colon was missing in web address, accesses external site correctly now. On Saturday, April 13, 2013 9:37:07 AM UTC-5, Vincent Fulco wrote: > > Attempting to use bootstrapcdn.com in a local bootstrap template on a VM > (with 2nd I

Re: Help implement CSS into Django!!!!

2013-04-13 Thread Vincent Fulco
Running a dev server, is the following required or not--> "manage.py collectstatic"? The official docs would indicate no and there is too much mis-information floating around so it is hard to verify one way or the other for a noob. Django 1.4 would appear to be able to find static files in dev

How to run cdn link in a local setup without screwed up hyperlink?

2013-04-13 Thread Vincent Fulco
Attempting to use bootstrapcdn.com in a local bootstrap template on a VM (with 2nd IP address to outside world) before pushing to heroku. Standard code in the head: http://netdna.bootstrapcdn.com/twitter-bootstrap/2.3.1/css/bootstrap-combined.min.css"; rel="stylesheet"> Static urls ref in

Re: django<-->twitter bootstrap philosophy

2012-09-25 Thread Vincent Fulco
can definitely include the bootstrap library in your > templates, and use its classes to style your pages. > Example<https://github.com/azizmb/mingus-bootstrap-theme/blob/master/mingus_bootstrap_theme/templates/base.html> > . > > I hope this clears your confusion. > &

django<-->twitter bootstrap philosophy

2012-09-25 Thread Vincent Fulco
Been thru the Django manual, bootstrap website instructions and other resources a few times so have working understanding of MVC structure. However, the incorporation of bootstrap throwing me off a little. Working on a ecommerce idea, for now plan is to create homepage (using bootstrap) as a

Re: Beginner problem linking pages from homepage?

2012-09-23 Thread Vincent Fulco
(may be in a link on your first page) or > change the urls.py accordingly. > > HTH > > Jirka > -- > *From: * Vincent Fulco > > *Sender: * django...@googlegroups.com > *Date: *Sun, 23 Sep 2012 12:47:39 -0700 (PDT) > *To: *> > *ReplyT

Re: Beginner problem linking pages from homepage?

2012-09-23 Thread Vincent Fulco
Addendum: the views.py also has the required 'from django.foo import" lines naturally. On Sunday, September 23, 2012 2:47:39 PM UTC-5, Vincent Fulco wrote: > > Thank you for the timely advice. Before I move my "base/homepage" site to > its own app dir, thought

Re: Beginner problem linking pages from homepage?

2012-09-23 Thread Vincent Fulco
Thank you for the timely advice. Before I move my "base/homepage" site to its own app dir, thought I would give it another pass using your changes. Verified 'mysite.urls' in settings.py, added 'mysite' to the urlpatterns arg and put quotes around the hello func. I have had debugging from the

Beginner problem linking pages from homepage?

2012-09-22 Thread Vincent Fulco
Missing something basic here even after scouring web and running thru online tut a few times. Started a project 'mysite' and added twitter bootstrap then created a static homepage "index.html' to act as a simple launchpad to other more information & feature laden pages. Used direct_to_template