Questions tagged [django-apps]

Django apps are reusable collections of django code that use the ORM layer. They may provide a single model class, or they may implement a full web application, or provide any mixture of such functionality.

Django apps are reusable collections of django code that use the ORM layer. They may provide a single model class, or they may implement a full web application, or provide any mixture of such functionality.

421 questions
0
votes
0 answers

Project Urls got overridden after installing Oscar

So I've been working on a project and I need 2 apps for it. I've made one of them from scratch and I am using Oscar(an e-commerce app). I have both the Apps in my Installed_Apps. But after installing oscar, I'm unable to visit the urls of my other…
Avais
  • 169
  • 1
  • 1
  • 9
0
votes
1 answer

Dynamic Django Application Creation Based On a SQL / CSV file

Is there any django application that can create other apps merely based on a sql / csv file provided that a default template is found for the new applications.
Val Neekman
  • 17,692
  • 14
  • 63
  • 66
0
votes
1 answer

Are headers, footers, sidebars Django Apps?

Is the header, footer, sidebar of a website separate applications in a django project?
css3newbie
  • 165
  • 1
  • 5
0
votes
1 answer

Syntax Error installing django-badgify

When I try to install django-badgify, I am getting this error: Traceback (most recent call last): File "./manage.py", line 10, in execute_from_command_line(sys.argv) File…
43Tesseracts
  • 4,617
  • 8
  • 48
  • 94
0
votes
1 answer

regarding Django philosphy of implementing project as reusable applications

I am implementing a project using Django. It's a site where people can view different Art courses and register. I am having trouble implementing the app as reusable applications. I already have a standalone App which takes care of all the aspect of…
sanket
  • 93
  • 1
  • 7
0
votes
1 answer

TemplateDoesNotExist at /admin/portfolio/collection/add/ adminsortable/edit_inline/stacked.html

I installed the app django-portfolio, and can use runserver ok. When I go to the admin page to add a new object to the Collections model, I get the following error page. TemplateDoesNotExist at…
ming
  • 427
  • 1
  • 5
  • 14
0
votes
0 answers

How to setup periodic backups

I have a Django project which has a lot of apps. To backup the database, I am using django-dbbackup. To backup the database, I use this: "python manage.py dbbackup" - This command basically does a backup of the existing database and stores it in a…
thematroids
  • 863
  • 2
  • 9
  • 13
0
votes
0 answers

How to handle "No module name found" in django url

Suppose I have an django application which doesn't exist or is not included in INSTALLED_APPS in settings.py. How to handle such an error? And at exactly what point in the flow is this error occurring? I want to redirect the user to 404 page if such…
Tajinder
  • 197
  • 1
  • 3
0
votes
0 answers

django app that uses two other applications

I am building a marketing application. There is a participants application and an advertisers application. Advertisers propose participants to join campaigns. Now I want to create campaigns: Advertisers create campaigns and consult their own…
rom
  • 3,592
  • 7
  • 41
  • 71
0
votes
2 answers

Check admin login on my django app

I have created a django app and have linked to the admin index page by modifying base.html. However, the link of the app is accessible directly as well. Can I check on the page or in the views.py of my app if the user is logged in to the django…
0
votes
3 answers

Two apps in one URL in Django

I try to link two apps to one URL. I found an example, where that can be possible with "include" command and two separate "urls.py" for each app. So, I tried to do that, but it still only one app works on page... Please, help. My main URL…
s_spirit
  • 111
  • 10
0
votes
1 answer

Django student matching project

I am currently writing an application that matches users based on similar interests, the subjects they study, where they live, etc. I have my user creation/login system written and working. However, I am struggling to get started with the matching…
MrW
  • 173
  • 1
  • 1
  • 12
0
votes
1 answer

django modifying code under dist-packages v/s copying source to project folder

I am trying to reuse an existing django app, django-reviews. I set it up based on the instructions and the code is now under dist-packages. >>> import review >>> review
Rajesh Chamarthi
  • 18,568
  • 4
  • 40
  • 67
0
votes
1 answer

Django-password-reset app

I am trying to use django password reset app whose usage steps are here, http://django-password-reset.readthedocs.org/en/latest/quickstart.html but I'm unable to understand its documentation, specially the 3rd step which is Link to the password…
vaibhav1312
  • 863
  • 4
  • 13
  • 31
0
votes
1 answer

How to Include "django-forms-bootstrap" in your requirements file

I'm trying to setup django-strip-payments. My process is install an app using pip to my env then add it to my settings INSTALLED_APPS. I don't know how to complete the following step though: "Include "django-forms-bootstrap" in your requirements…