Files
soter/soter/templates/photo-form.html
tanshu 9000ecdce5 Initial Commit.
Gitignore ignores all PyCharm files as well as recommended python files
Basic starter project with Pyramid 1.5.x
Templates are copied from the OpenPhoto (Trovebox) files
Targets:
1. Photo management
2. Angularjs with keyboard/swipe navigation
3. Json API compatible with OpenPhoto
4. Amazon S3 support
5. Tags, etc.
6. The one true source of all a person's photos

In Greek mythology, Soter was the spirit of safety, preservation and deliverance from harm.
2015-05-24 14:09:35 +05:30

23 lines
952 B
HTML

<h4>Update your plugin: <em><?php $this->utility->safe($plugin); ?></em></h4>
<div class="row">
<div class="span12">
<form class="pluginUpdate" action="/plugin/<?php $this->utility->safe($plugin); ?>/update">
<table class="table left-header">
<?php foreach($conf as $k => $v) { ?>
<tr>
<td class="span2"><label><?php $this->utility->safe($k); ?></label></td>
<td><input type="text" name="<?php $this->utility->safe($k); ?>" value="<?php $this->utility->safe($v); ?>"></td>
</tr>
<?php } ?>
<tr>
<td></td>
<td>
<input type="hidden" name="crumb" value="<?php $this->utility->safe($crumb); ?>">
<button type="submit" class="btn btn-primary">Save</button>
</td>
</tr>
</table>
</form>
</div>
</div>
<a href="#" class="batchHide close" title="Close this dialog"><i class="icon-remove batchHide"></i></a>