Align chakras
This commit is contained in:
@@ -31,6 +31,6 @@ block content
|
|||||||
if chunk.translated
|
if chunk.translated
|
||||||
span nothing
|
span nothing
|
||||||
else if chunk.translation
|
else if chunk.translation
|
||||||
a.btn.blue review
|
a.btn.blue(href=`/translate/${chapter.entryVersion.translationEntryVersions[0].id}/chapter/${chapter.id}/t/${chunk.index}`) review
|
||||||
else
|
else
|
||||||
a.btn.black(href=`/translate/${chapter.entryVersion.translationEntryVersions[0].id}/chapter/${chapter.id}/t/${chunk.index}`) translate
|
a.btn.black(href=`/translate/${chapter.entryVersion.translationEntryVersions[0].id}/chapter/${chapter.id}/t/${chunk.index}`) translate
|
||||||
@@ -11,7 +11,7 @@ block content
|
|||||||
textarea#original-text.materialize-textarea(name="originalText", readonly)= chunk.text
|
textarea#original-text.materialize-textarea(name="originalText", readonly)= chunk.text
|
||||||
label(for="original-text") Original Text
|
label(for="original-text") Original Text
|
||||||
.col.s12.m6.input-field
|
.col.s12.m6.input-field
|
||||||
textarea#translated-text.materialize-textarea(name="translatedText", placeholder=chunk.text)
|
textarea#translated-text.materialize-textarea(name="translatedText", placeholder=chunk.text)= chunk.translation ? chunk.translation.text : null
|
||||||
label(for="original-text") Translated Text
|
label(for="original-text") Translated Text
|
||||||
.col.s12
|
.col.s12
|
||||||
.center
|
.center
|
||||||
@@ -49,7 +49,7 @@ block content
|
|||||||
if previousChunk.translated
|
if previousChunk.translated
|
||||||
span nothing
|
span nothing
|
||||||
else if previousChunk.translation
|
else if previousChunk.translation
|
||||||
a.btn.blue review
|
a.btn.blue(href=`/translate/${previousChunk.chapter.entryVersion.translationEntryVersions[0].id}/chapter/${previousChunk.chapter.id}/t/${previousChunk.index}`) review
|
||||||
else
|
else
|
||||||
a.btn.black(href=`/translate/${previousChunk.chapter.entryVersion.translationEntryVersions[0].id}/chapter/${previousChunk.chapter.id}/t/${previousChunk.index}`) previous translation
|
a.btn.black(href=`/translate/${previousChunk.chapter.entryVersion.translationEntryVersions[0].id}/chapter/${previousChunk.chapter.id}/t/${previousChunk.index}`) previous translation
|
||||||
|
|
||||||
@@ -75,9 +75,9 @@ block content
|
|||||||
if nextChunk.translated
|
if nextChunk.translated
|
||||||
span nothing
|
span nothing
|
||||||
else if nextChunk.translation
|
else if nextChunk.translation
|
||||||
a.btn.blue review
|
a.btn.blue(href=`/translate/${nextChunk.chapter.entryVersion.translationEntryVersions[0].id}/chapter/${nextChunk.chapter.id}/t/${nextChunk.index}`) review
|
||||||
else
|
else
|
||||||
a.btn.black(href=`/translate/${nextChunk.chapter.entryVersion.translationEntryVersions[0].id}/chapter/${nextChunk.chapter.id}/t/${nextChunk.index}`) next translation
|
a.btn.black(href=`/translate/${nextChunk.chapter.entryVersion.translationEntryVersions[0].id}/chapter/${nextChunk.chapter.id}/t/${nextChunk.index}`) next translation
|
||||||
|
|
||||||
|
|
||||||
block additionalScripts
|
block additionalScripts
|
||||||
|
|||||||
Reference in New Issue
Block a user