Show More
@@ -304,6 +304,11 b' mark,' | |||
|
304 | 304 | } |
|
305 | 305 | |
|
306 | 306 | .title-content { |
|
307 | ||
|
308 | &.repo-title { | |
|
309 | float: none | |
|
310 | } | |
|
311 | ||
|
307 | 312 | float: left; |
|
308 | 313 | margin: 0; |
|
309 | 314 | padding: 0; |
@@ -190,7 +190,7 b'' | |||
|
190 | 190 | |
|
191 | 191 | |
|
192 | 192 | <%def name="repo_page_title(repo_instance)"> |
|
193 | <div class="title-content"> | |
|
193 | <div class="title-content repo-title"> | |
|
194 | 194 | <div class="title-main"> |
|
195 | 195 | ## SVN/HG/GIT icons |
|
196 | 196 | %if h.is_hg(repo_instance): |
@@ -213,6 +213,15 b'' | |||
|
213 | 213 | ## repo name with group name |
|
214 | 214 | ${h.breadcrumb_repo_link(repo_instance)} |
|
215 | 215 | |
|
216 | ## Context Actions | |
|
217 | <div class="pull-right"> | |
|
218 | %if c.rhodecode_user.username != h.DEFAULT_USER: | |
|
219 | <a href="${h.route_path('atom_feed_home', repo_name=c.rhodecode_db_repo.repo_name, _query=dict(auth_token=c.rhodecode_user.feed_token))}" title="${_('RSS Feed')}" class="btn btn-sm"><i class="icon-rss-sign"></i>RSS</a> | |
|
220 | %else: | |
|
221 | <a href="${h.route_path('atom_feed_home', repo_name=c.rhodecode_db_repo.repo_name)}" title="${_('RSS Feed')}" class="btn btn-sm"><i class="icon-rss-sign"></i>RSS</a> | |
|
222 | %endif | |
|
223 | </div> | |
|
224 | ||
|
216 | 225 | </div> |
|
217 | 226 | |
|
218 | 227 | ## FORKED |
@@ -197,21 +197,6 b'' | |||
|
197 | 197 | </div> |
|
198 | 198 | % endif |
|
199 | 199 | |
|
200 | ## Context Action | |
|
201 | <div class="fieldset collapsable-content" data-toggle="summary-details" style="display: none;"> | |
|
202 | <div class="left-label-summary"> | |
|
203 | <p>${_('Feed')}</p> | |
|
204 | ||
|
205 | <div class="right-label-summary"> | |
|
206 | %if c.rhodecode_user.username != h.DEFAULT_USER: | |
|
207 | <a href="${h.route_path('atom_feed_home', repo_name=c.rhodecode_db_repo.repo_name, _query=dict(auth_token=c.rhodecode_user.feed_token))}" title="${_('RSS Feed')}" class="btn btn-sm"><i class="icon-rss-sign"></i>RSS</a> | |
|
208 | %else: | |
|
209 | <a href="${h.route_path('atom_feed_home', repo_name=c.rhodecode_db_repo.repo_name)}" title="${_('RSS Feed')}" class="btn btn-sm"><i class="icon-rss-sign"></i>RSS</a> | |
|
210 | %endif | |
|
211 | </div> | |
|
212 | </div> | |
|
213 | </div> | |
|
214 | ||
|
215 | 200 | ## Repo size |
|
216 | 201 | <div class="fieldset collapsable-content" data-toggle="summary-details" style="display: none;"> |
|
217 | 202 | <div class="left-label-summary"> |
General Comments 0
You need to be logged in to leave comments.
Login now