# HG changeset patch # User Marcin Kuzminski # Date 2012-12-06 00:38:02 # Node ID 7297ffb60900b5a389f944ef2367dc8367b01f84 # Parent ca2b21819dfdd4b483f5ca3b2706b35b9b6b0007 fix repo_edit form diff --git a/rhodecode/templates/admin/repos/repo_edit.html b/rhodecode/templates/admin/repos/repo_edit.html --- a/rhodecode/templates/admin/repos/repo_edit.html +++ b/rhodecode/templates/admin/repos/repo_edit.html @@ -63,56 +63,56 @@
- +
- ${h.select('landing_rev','',c.landing_revs,class_="medium")} + ${h.select('repo_landing_rev','',c.landing_revs,class_="medium")} ${_('Default revision for files page, downloads, whoosh and readme')}
- +
- ${h.textarea('description')} + ${h.textarea('repo_description')} ${_('Keep it short and to the point. Use a README file for longer descriptions.')}
- +
- ${h.checkbox('private',value="True")} + ${h.checkbox('repo_private',value="True")} ${_('Private repositories are only visible to people explicitly added as collaborators.')}
- +
- ${h.checkbox('enable_statistics',value="True")} + ${h.checkbox('repo_enable_statistics',value="True")} ${_('Enable statistics window on summary page.')}
- +
- ${h.checkbox('enable_downloads',value="True")} + ${h.checkbox('repo_enable_downloads',value="True")} ${_('Enable download menu on summary page.')}
- +
- ${h.checkbox('enable_locking',value="True")} + ${h.checkbox('repo_enable_locking',value="True")} ${_('Enable lock-by-pulling on repository.')}