Pinax is an open-source platform built on the Django Web Framework.
0
votes
1answer
20 views
How to replace Pinax template view for home to a normal view?
I have just installed Pinax on Django 1.4.5 and in the urls the home page is a TemplateView. I want to add some logic in the home page so I commented that url and created a new one that links to a ...
0
votes
0answers
30 views
Why is app in Pinax project not appearing?
I'm getting:
ImportError at /
No module named tribes.models
Request Method: GET
Request URL: http://stornge.com:8000/
Django Version: 1.5
Exception Type: ImportError
Exception Value:
No module ...
0
votes
0answers
14 views
How do I get an app, threadedcomments_extras, to show up or be ignored?
I'm getting:
ImportError at /
No module named threadedcomments_extras
Request Method: GET
Request URL: http://stornge.com:8000/
Django Version: 1.5
Exception Type: ImportError
Exception Value:
...
2
votes
1answer
272 views
How can I satisfy an import of direct_to_template?
I am getting an error page from an originally Pinax 0.7 project:
ImportError at /
No module named simple
Request Method: GET
Request URL: http://stornge.com:8000/
Django Version: 1.5
Exception ...
0
votes
0answers
70 views
How can I use tribes, building off of pinax-social-project?
As a sample question about how to use Pinax, I would like to use tribes. I would like to make a separate page from the homepage that lists existing tribes, a page that can be used to request that an ...
0
votes
0answers
11 views
Why is Pinax looking for uploadable media but not static files?
My present urls.py is:
from django.conf import settings
from django.conf.urls import patterns, include, url
from django.conf.urls.static import static
from django.views.generic.simple import ...
0
votes
0answers
28 views
How do I add CSS/media to the pinax-social-project?
I'm working on a Pinax social site, off the Github clone at https://github.com/pinax/pinax-project-social . Initially the page was unstyled; it appeared not to see CSS or other formatting. So I edited ...
0
votes
1answer
65 views
Customizing Profile Model in Pinax: Integrity error in admin when OnetoOneField is added
I'm new to Pinax and Django. I'm trying to extend the Pinax Profile model by having a OneToOneField that pulls from another application I plugged in (in this case, django-swingtime : ...
0
votes
0answers
27 views
Do Django model changes imply pinax model changes?
Inherited a web site that uses Django and Pinax.
I participated in substantial changes made to the Django model (database). Was given the new logical design and then modified the code so that the ...
2
votes
1answer
69 views
Installing Pinax, where is my deployment folder?
I'm trying to set up Pinax and I'm new to everything involved (Django, Pinax, webservers, etc). I'm following http://pinax.readthedocs.org/en/latest/gettingstarted.html
When I generate a project ...
0
votes
1answer
32 views
How to link to a self-created site in pinax(0.9a2)? [closed]
I have to implemented two links in my navbar! However I want to add a project written by myself to the site! The first step is to link to the site.
How to do that?
I appreciate your answer!!!
...
0
votes
1answer
36 views
How to add a link to the navigation pinax(0.9a2)?
I want to add new links to the standart bootstap theme in pinax. I tried to implement the in my site:
{% block nav %}
{% if user.is_authenticated %}
<ul>{% spaceless %}
...
1
vote
3answers
98 views
What are the best reusable django apps for form processing? [closed]
In my application I want to process some form data and show it later on a different page.
My question is: Can you recommend any django apps to quickly set up such a system?
I appreciate your ...
0
votes
1answer
132 views
Pinax-theme-bootstrap editing
Pinax theme for Bootstrap on Django twitter lacks a clear guide. Like how it's supposed to send emails when you haven't specified the email_host and password. Changing the top bar to include other ...
0
votes
1answer
195 views
How to change the pinax(0.9a2) template?
I have installed the pinax(0.9a2) with the pinax-bootstrap theme!
Now I want to customize it and redesign the theme, but I didn`t find any *.css files in my template folder. Therefore how to ...
0
votes
2answers
135 views
What are the different options to install pinax(0.9a) inclusive requirements?
I tried the classical way with pip install Pinax and then install the requirements base.txt, but this does not work?
What are other options to install a working pinax(0.9) base project inclusive ...
0
votes
1answer
37 views
Where is the official list of differences between pinax 0.9a & 0.7.3 [closed]
Can anyone point me to the official list of differences between pinax 0.9a and 0.7.3 please?
0
votes
1answer
51 views
Installed the pinax requirements over the base.txt file - nothing works?
I installed the pinax requirements over the base.txt file
.
Now when I do python manage.py syncdb i get:
Traceback (most recent call last):
File "manage.py", line 20, in <module>
...
0
votes
1answer
37 views
How can integrate the login/registration into a pinax(0.9) projects?
I have installed pinax and now I want to integrate some apps. First I would like to start with the login and registration.
I tried to deal with poor documentation of Pinax, therefore I do not know ...
0
votes
1answer
52 views
Pinax synch db gives me no module named debug_toolbar?
I have installed pinax, and created a project with the pinax-admin
After that I just wanted to synch the db with:
python manage.py syncdb
Error: No module named debug_toolbar
I am running python ...
0
votes
1answer
65 views
Pinax run it under win7 with eclipse?
I have installed pinax, and created a project with the pinax-admin
then I copied the project into an empty django-eclipse project and wanted to run synchdb form the eclipse console but I only get:
...
0
votes
1answer
74 views
Pinax or pure Django for db driven web site
I'm about to develop a web site that works closely with database attributes.
It needs to fetch required data from the db based on search criteria and to display them as table.
I was studying django ...
0
votes
0answers
96 views
Django/Pinax UTF8 encoding
I have scrumdo http://scrumdo.org installed on a CentOS server which I'm trying to move to a slackware server. On CentOS I installed LAMP and I believe pinax with yum, and on slackware I used ...
0
votes
1answer
174 views
pinax error: no module named debug toolbar
I am developing a project with pinax and django 1.3.1 have successfully installed the virtualenv,pinax and other requirements and activated it created a project using pinax-admin.py setup_project ...
0
votes
0answers
123 views
Configuring Django/Pinax Email
I'm trying to configure automated emails for my Pinax app.
In the shell (python manage.py shell) I am doing the following to test my email settings:
>>> send_mail ...
0
votes
0answers
51 views
No model named metron
I am looking to use Pinax to help speedup the process of creating a website in Django.
I started out by following the guide as follows.
[***@vps-1087814-7905 sites]# virtualenv mysite-env
...
1
vote
1answer
2k views
Python, pinax, django, windows AttributeError: 'module' object has no attribute 'call_subprocess'
I installed pinax on windows
after trying to create a project I got this error:
(mysite) C:\virtualenvs\mysite>pinax-admin setup_project mypinax
Created project mypinax
Installing project ...
0
votes
1answer
80 views
pinax0.9a2 does not work with wsgi and apache
I am trying to deploy pinax0.9a2 with Apache 2.22 and WSGI 3.3. I am using the wsgi.py provided by pinax. But I got the 500 error and the following error in the apache error log:
[Sun Aug 19 ...
1
vote
0answers
495 views
Pinax, django1.4 and zurb-foundation
I'm fiddling around with Pinax project and I quite like it. One thing I've noticed is that it uses Django 1.3. Now my questions are:
What are the main differences between Django1.3 and Django1.4? ...
2
votes
2answers
351 views
Difference between pinax.apps.accounts, idios profiles, and django.auth.User
What's the difference between pinax.apps.accounts and the idios profiles app that were installed with the profiles base project?
As I understand it, the contrib.auth should be just for ...
2
votes
1answer
694 views
heroku No module named _sqlite3
While trying to deploy a django app on heroku, I get the following error. I am able to test locally. It works fine. But "heroku run python manage.py syncdb" results in the following error. I have gone ...
0
votes
1answer
107 views
Change pinax accounts theme
I have a Pinax accounts app,So now I want to customize the look of the default Pinax accounts app.By default it has some theme based on bootstrap I think,now I want to replace it with my custom theme ...
0
votes
1answer
48 views
Questions about extending any Django app
My old worker installed Pinax through PIP and it's installed in site-packages. All the apps lives there. Our own apps are within our Django project structure.
I want to modify Pinax's account app, by ...
0
votes
0answers
29 views
missing templatetag group_tag in pinax 0.9 fix
I upgraded from pinax 0.7 to 0.9.
in pinax 0.7 they made use of the app groups which has made its way to django.auth.group
In the prior codebase there was a templatetag
{% load group_tags %}
...
0
votes
1answer
83 views
Pinax Email Verification not working
I have installed pinax on my local and I try to sign-up on it. but the email verification is not working, so I look over the internet on how to config about the email verification but failed.
I try ...
0
votes
1answer
107 views
pinax-admin: command not found
i am trying to install pinax in django 1.4.0. and I am using git to install pinax...
-e git+git://github.com/pinax/pinax.git#egg=pinax
now.. when i activate my virtualenv.
/djangoproj$ virtualenv ...
2
votes
1answer
56 views
Pinax CSS suddenly stopped working and now black bar is gone but links still there
I am hosting Pinax on a virtualenv.
Everything was going great. I started working on other pages in the virtual templates folder, adding CSS to it.
I reloaded the page and the black bar on top is ...
1
vote
2answers
223 views
install pinax from an index link via pip from a pypi mirror
I wanted to install pinax and other dependent packages listed at
http://pypi.pinaxproject.com
I try with the following settings in the requirements file:
django-notification==0.1.4
...
2
votes
2answers
306 views
'markup_tags' is not a valid tag library
Everytime I add a particular object to my database (this only affects one particular app on my site), I get the TemplateSyntaxError 'markup_tags' is not a valid tag library.
Specifically, it cannot ...
1
vote
2answers
130 views
in Django ORM, A “Student - Course” Model design
I would like to design a Model for an online private school in Django. It focuses on relation among Students, Tutors and Courses.
The most important factor that should be considered is that Students ...
1
vote
1answer
60 views
What is the difference between media and site_media folders?
What is the difference between the two folders? I created an example project in Pinax and sometimes they put stuff in media and other times site_media.
0
votes
1answer
253 views
Nginx Django csrf_token get 502 error invalid header
I have a Django site developed using Pinax. When I deploy it in apache+mod_wsgi, it works fine. But when I deploy it in nginx+uwsgi, it nearly works fine, but the page includes a {% csrf_token %} tag. ...
0
votes
1answer
203 views
How can i install external pinax projects?
I try to deal with poor documentation of Pinax.
I found this project
https://github.com/pinax/pinax-multiblog-project
what i want is that install it. I normally install a project called account ...
0
votes
0answers
78 views
Adding site_media/static directory to django and pinax
i just installed django and pinax and in my project i created site_media/static directories
i put my all js, css and images. The problem is that i cannot access them. Django reads static from my env ...
0
votes
0answers
55 views
What's wrong with the static files in Pinax?
i have installed pinax and i dont understand completely now.
After installation, i created site_media/static directory in my project. At this time, there css and images in mysite-env directory. I ...
0
votes
1answer
67 views
Pinax Structure
I have just installed the Pinax but i'm very confused now.
in my structre
i have two directories
mysite and mysite-env
I dont why i have two directories. I just followed the installitation ...
0
votes
1answer
285 views
How to setup email verification/confirmation in Django/Pinax?
How to setup email confirmation in Pinax?, Do I need to setup SMTP server or something like that?, I tried to find documentation about that but failed. Can anyone redirect me to documentation or any ...
0
votes
1answer
153 views
Overriding Account/context_processors.py (Pinax/Django)
I'm trying to override the default Account/context_processors.py for the Pinax project.
However, each time I try, it can't find the file and continues to use the default.
The path of the file in the ...
0
votes
1answer
150 views
Can't find a particular version of a dependent lib (Django/Pinax)
Based on my app I need the django-microblogging==0.2.dev1 package, but when I put that in requirements.txt, it can't find this particular version.
And when I use the version it can find (an older ...
12
votes
5answers
1k views
Django-Pinax : How do you use a pinax app apart from what you get with a pinax base project?
I am trying to understand Pinax and plan to use it in my next project.
I have started with a pinax basic project, and now I have something to go with runserver.
Now, I understand that I can ...