Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

72

73

GENRE = ( 

('adv', 'adventure'), 

('ang', 'angst'), 

('dra', 'drama'), 

('fri', 'friendship'), 

('gen', 'general'), 

('hum', 'humor'), 

('hur', 'hurt/comfort'), 

('mys', 'mystery'), 

('rom', 'romance'), 

('tra', 'tragedy'), 

('hor', 'horror'), 

('fan', 'fantasy') 

) 

 

RATING = ( 

('K', 'K'), 

('K+', 'K+'), 

('T', 'T'), 

('M', 'M'), 

) 

 

RATING_CHOICES = ( 

(0, 'all'), 

(1, 'K'), 

(2, 'K+'), 

(3, 'T'), 

(4, 'M'), 

) 

 

GENRES_CHOICES = ( 

(0, 'all'), 

('adv', 'adventure'), 

('ang', 'angst'), 

('dra', 'drama'), 

('fri', 'friendship'), 

('gen', 'general'), 

('hum', 'humor'), 

('hur', 'hurt/comfort'), 

('mys', 'mystery'), 

('rom', 'romance'), 

('tra', 'tragedy'), 

('hor', 'horror'), 

('fan', 'fantasy') 

) 

 

SORT_CHOICES = ( 

(0, "All"), 

(1, "Last updated"), 

(2, "Number of reviews"), 

(3, "Number of followers") 

) 

 

LENGTH_CHOICES = ( 

(0, "All"), 

(1, "< 1K words"), 

(2, ">10K words"), 

(3, ">40K words"), 

(4, ">60k words"), 

(5, ">100K words") 

) 

 

STATUS_CHOICES = ( 

(0, "All"), 

(1, "Complete"), 

(2, "In progress"), 

) 

 

ISSUES = ( 

("m", "metadata"), 

("c", "chapters"), 

("o", "other") 

)