Compare commits
No commits in common. "72272dfde45b9b4d61b5bd65563eeae499179044" and "9686aab8603399fe2c37562eadc0a234d54c10d2" have entirely different histories.
72272dfde4
...
9686aab860
2 changed files with 3 additions and 3 deletions
|
|
@ -17,9 +17,9 @@ class Command(BaseCommand):
|
|||
|
||||
def add_arguments(self, parser):
|
||||
parser.add_argument('--all', action='store_true', dest='all',
|
||||
default=False, help='update all items, otherwise oldes N')
|
||||
default=False, help='update all items, otherwise oldes N'),
|
||||
parser.add_argument('-n', '--items', action='store', dest='items', type=int,
|
||||
default=30, help='number of items ot update')
|
||||
default=30, help='number of items ot update'),
|
||||
|
||||
def handle(self, **options):
|
||||
offset = 0
|
||||
|
|
|
|||
|
|
@ -201,7 +201,7 @@ pandora.ui.idDialog = function(data) {
|
|||
}
|
||||
return Ox.filter([
|
||||
item.id,
|
||||
item.title + ((item.originalTitle && item.title != item.originalTitle) ? ' (' + item.originalTitle + ')' : ''),
|
||||
item.title + (item.originalTitle ? ' (' + item.originalTitle + ')' : ''),
|
||||
item.director ? item.director.join(', ') : '',
|
||||
item.year
|
||||
]).join(' — ');
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue