mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
32 lines
899 B
Text
32 lines
899 B
Text
|
extends layout
|
||
|
|
||
|
block content
|
||
|
.content
|
||
|
.row
|
||
|
.span10.offset1
|
||
|
.box
|
||
|
.row-fluid
|
||
|
.span12
|
||
|
.page-header
|
||
|
h1 Recover projects
|
||
|
|
||
|
.row-fluid
|
||
|
.span12
|
||
|
.well
|
||
|
p If any of your projects are missing, or are not showing the most recent updates, you
|
||
|
| can recover from our latest back ups here. If you have any problems, please get in
|
||
|
| touch (team@sharelatex.com).
|
||
|
|
||
|
.row-fluid
|
||
|
table.table
|
||
|
-each project in projects
|
||
|
tr
|
||
|
- project_id = project._id.toString()
|
||
|
td(width="50%") #{project.name}
|
||
|
td(width="25%")
|
||
|
a.btn(href="/project/#{project_id}/zip") Download as Zip
|
||
|
td(width="25%")
|
||
|
a.btn.btn-primary(href="/project/new/template?zipUrl=/project/#{project_id}/zip&templateName=#{project.name}_(Restored)") Restore to ShareLaTeX
|
||
|
|
||
|
include general/small-footer
|