gitupdate.html 638 Bytes
Newer Older
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
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
<html> <head>
<title>edX gitupdate</title>
</head>

<body>
<hr>
<h1>edX gitupdate</h1>
<hr>

<h2>Coursename: ${coursename}</h2>

% if msg:

  ${msg}

% else:
<p>
Do you REALLY want to overwrite all the course.xml + problems + html
files with version from the main git repository?
</p>

<form method="post">
<input type="submit" value="Do git update" name="gitupdate" />
## <input type="submit" value="Cancel" name="cancel" />
<input type="hidden" name="csrfmiddlewaretoken" value="${csrf}"/>
</form>
% endif

ichuang committed
30
<p><a href="${MITX_ROOT_URL}/courseware/">Return to site</a></p>
31 32

</body> </html>