Note that there are some explanatory texts on larger screens.

plurals
  1. USjewelia
    primarykey
    data
    text
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. COAwesome; that worked great and thanks for the quick answer. For anyone reading this in the future, my form data was an empty string so I modified the code such that: `if title == '': raise forms.ValidationError("Missing title")` (since type of title is `unicode` and not `None`). The errors also show up in `form.non_form_errors()` (I spent a while debugging, wondering why validation correctly failed after inserting this code but the errors were missing).
      singulars
    2. COI modified my models to each pass related_name: `tags = TaggableManager(blank=True) tags.rel.related_name = "appA"` - that does solve the problem of the `tags` variable clashing, but unfortunately not the `tagged_items` variable; I still get the same errors & I can't figure out how to pass `related_name` to that variable. Also: thanks for feedback re:consolidation and creating a single auth interface; I'm definitely leaning towards doing that now :) This is my first stackoverflow post so thx for the tip to separate questions next time.
      singulars
    3. COMy end goal is to consolidate the apps (meaning 1 Django project with 1 app; currently a lot of the apps share common code). But as a first step I thought I would combine them all into 1 project; however, this is getting much tougher than I thought. Thanks for the info!
      singulars
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload