diff --git a/kallithea/templates/changelog/changelog_summary_data.html b/kallithea/templates/changelog/changelog_summary_data.html deleted file mode 100644 --- a/kallithea/templates/changelog/changelog_summary_data.html +++ /dev/null @@ -1,103 +0,0 @@ -## -*- coding: utf-8 -*- -%if c.cs_pagination: -
- | - | ${_('Revision')} | -${_('Commit Message')} | -${_('Age')} | -${_('Author')} | -${_('Refs')} | -
---|---|---|---|---|---|---|
- %if c.cs_statuses.get(cs.raw_id): - %if c.cs_statuses.get(cs.raw_id)[2]: - - - - %else: - - - - %endif - %endif - | -
- %if c.cs_comments.get(cs.raw_id,[]):
-
-
- %endif
-
-
- ${len(c.cs_comments[cs.raw_id])}
-
-
- |
- - ${h.show_id(cs)} - | -- ${h.urlify_text(h.chop_at(cs.message,'\n'),c.repo_name, h.url('changeset_home',repo_name=c.repo_name,revision=cs.raw_id))} - | -- ${h.age(cs.date)} - | -${h.person(cs.author)} | -- %for book in cs.bookmarks: - - ${h.link_to(book,h.url('changeset_home',repo_name=c.repo_name,revision=cs.raw_id))} - - %endfor - %for tag in cs.tags: - - ${h.link_to(tag,h.url('changeset_home',repo_name=c.repo_name,revision=cs.raw_id))} - - %endfor - %if cs.branch: - - ${h.link_to(cs.branch,h.url('changelog_home',repo_name=c.repo_name,branch=cs.branch))} - - %endif - | -
- ${c.db_repo_scm_instance.alias} clone ${c.clone_repo_url} - ${c.db_repo_scm_instance.alias} add README # add first file - ${c.db_repo_scm_instance.alias} commit -m "Initial" # commit with message - ${c.db_repo_scm_instance.alias} push ${'origin master' if h.is_git(c.db_repo_scm_instance) else ''} # push changes back -- -
-%if h.is_git(c.db_repo_scm_instance): - git remote add origin ${c.clone_repo_url} - git push -u origin master -%else: - hg push ${c.clone_repo_url} -%endif --%endif diff --git a/kallithea/templates/summary/summary.html b/kallithea/templates/summary/summary.html --- a/kallithea/templates/summary/summary.html +++ b/kallithea/templates/summary/summary.html @@ -1,4 +1,5 @@ <%inherit file="/base/base.html"/> +<%namespace name="changelog_table" file="/changelog/changelog_table.html"/> <%block name="title"> ${_('%s Summary') % c.repo_name} @@ -179,7 +180,37 @@
+ ${c.db_repo_scm_instance.alias} clone ${c.clone_repo_url} + ${c.db_repo_scm_instance.alias} add README # add first file + ${c.db_repo_scm_instance.alias} commit -m "Initial" # commit with message + ${c.db_repo_scm_instance.alias} push ${'origin master' if h.is_git(c.db_repo_scm_instance) else ''} # push changes back ++ +
+ %if h.is_git(c.db_repo_scm_instance): + git remote add origin ${c.clone_repo_url} + git push -u origin master + %else: + hg push ${c.clone_repo_url} + %endif ++ %endif