On Thu, 2009-04-30 at 07:47 -0700, eric.frederich wrote:
> So, I have been tasked with creating a new website within my company
> for a new project.  Lets call the project XYZ (because just calling it
> 'the project' is confusing since Django already has a concept of
> projects).
> 
> The website will be your run of the mill project page with
> announcements, newsletters, presentations etc.
> One other thing they wanted was to be able to manage and track
> training for XYZ.
> 
> We have been looking to change the way we track other training
> (currently in a spreadsheet) for a while now.  I took the opportunity
> and created a Django application for all training, not just for XYZ.
> I'd like it to live at http://someserver/training/.  From there they
> could find training on AutoCad, Visio, MathCad, as well as XYZ.
> 
> For the XYZ project page, I'd like it to live at http://someserver/XYZ/.
> 
> So now here's the question.  Should the training site and the XYZ site
> both be projects?  If they're both projects, how could I get a list of
> all XYZ training courses from the XYZ project page?  That would
> involve 1 project pulling data from the other.
> 
> I could just have one Django project at '/' instead of one at '/
> training' and one at '/XYZ'.  Doing that, getting a list of XYZ
> training courses up on the XYZ project page would be easy.  Now is
> having a single Django project hogging up '/' going to prevent me from
> running other things like a MediaWiki or BugZilla?  Do I need to use
> "http://someserver/django/training"; and "http://someserver/django/
> XYZ"?

You're asking (yourself) some good questions here. However, either I'm
misunderstanding your explanation (and the word "projects" has become
ambiguous, despite your efforts) or you're looking at possibly the wrong
layer.

The issue I'm having is with the simple statement "get a list of XYZ
training courses". What does this really involve? Is it retrieving a
list of objects from the database? Or is it a matter of constructing a
bunch of links correctly?

In short, I'm not quite sure what the difficult part of this process
potentially would be. I don't mean that I cannot imagine anything would
be difficult. Rather, I'm wondering which part of it is the particular
obstacle you're trying to overcome; I don't have enough information to
understand what the hard part is, because I don't understand the
requirements.

Regards,
Malcolm


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to