mirror of
https://github.com/haiwen/seahub.git
synced 2025-08-17 22:47:59 +00:00
17 lines
929 B
HTML
17 lines
929 B
HTML
{% load i18n %}
|
||
<h3>{% trans 'Recent Events' %}</h3>
|
||
<ul id="events" class="hide"></ul>
|
||
<div id="events-loading" class="hide"><img src="{{MEDIA_URL}}img/loading-icon.gif" alt="{% trans 'Loading...' %}" /></div>
|
||
<button id="events-more" class="hide">{% trans 'More' %}</button>
|
||
<p id="events-error" class="error hide"></p>
|
||
<form id="repo-decrypt-form" class="simple-input-popup hide">
|
||
<h3>{% trans 'Library' %} <span class="op-target"></span> {% trans 'is encrypted' %}</h3>
|
||
<input type="hidden" name="repo_id" value="" />
|
||
<label>{% trans 'Password:' %}</label><br />
|
||
<input type="password" name="password" maxlength="15" class="long-input" />
|
||
<p class="tip">{% trans 'The password will be kept in the server for only 1 hour.' %}</p>
|
||
<p class="error"></p>
|
||
<input type="submit" class="submit" value="{% trans 'Submit' %}" />
|
||
<button class="simplemodal-close">{% trans 'Cancel' %}</button>
|
||
</form>
|