mirror of
https://github.com/viq/NewsBlur.git
synced 2025-09-18 21:43:31 +00:00
Moving reach score
This commit is contained in:
parent
fff85beb23
commit
3702c2ca6b
1 changed files with 2 additions and 2 deletions
|
@ -1572,8 +1572,8 @@ class Feed(models.Model):
|
|||
worksheet.write(0, col, 'Feed', bold)
|
||||
worksheet.write(0, col+1, 'Feed URL', bold)
|
||||
worksheet.write(0, col+2, '# Subs', bold)
|
||||
worksheet.write(0, col+3, 'Reach score', bold)
|
||||
worksheet.write(0, col+4, '# Readers', bold)
|
||||
worksheet.write(0, col+3, 'Reach score', bold)
|
||||
worksheet.write(0, col+5, 'Read %', bold)
|
||||
worksheet.write(0, col+6, '# stories 30d', bold)
|
||||
worksheet.write(0, col+7, 'Author', bold)
|
||||
|
@ -1602,8 +1602,8 @@ class Feed(models.Model):
|
|||
worksheet.write(row, col+0, feed['feed_title'])
|
||||
worksheet.write_url(row, col+1, feed['feed_url'])
|
||||
worksheet.write(row, col+2, feed['num_subscribers'])
|
||||
worksheet.write(row, col+3, feed['reach_score'])
|
||||
worksheet.write(row, col+4, feed['reader_count'])
|
||||
worksheet.write(row, col+3, feed['reach_score'])
|
||||
worksheet.write(row, col+5, feed['read_pct'])
|
||||
worksheet.write(row, col+6, feed['story_count'])
|
||||
worksheet.conditional_format(row, col+3, row, col+6, {'type': 'cell',
|
||||
|
|
Loading…
Add table
Reference in a new issue