Returned product build list page
This commit is contained in:
parent
8cbe33ab0a
commit
6157338a46
|
@ -45,6 +45,8 @@ module ApplicationHelper
|
||||||
'fa-cube'
|
'fa-cube'
|
||||||
when :build_lists
|
when :build_lists
|
||||||
'fa-cogs'
|
'fa-cogs'
|
||||||
|
when :product_build_lists
|
||||||
|
'fa-product-hunt'
|
||||||
when :groups
|
when :groups
|
||||||
'fa-users'
|
'fa-users'
|
||||||
when :statistics
|
when :statistics
|
||||||
|
|
|
@ -2,20 +2,22 @@
|
||||||
- set_meta_tags og: { title: t('.title'), description: t('tour.meta_description') }
|
- set_meta_tags og: { title: t('.title'), description: t('tour.meta_description') }
|
||||||
- set_meta_tags twitter: { title: t('.title'), description: t('tour.meta_description') }
|
- set_meta_tags twitter: { title: t('.title'), description: t('tour.meta_description') }
|
||||||
|
|
||||||
== render 'projects/build_lists/submenu'
|
/ == render 'projects/build_lists/submenu'
|
||||||
|
|
||||||
.container
|
.row.top-space
|
||||||
== render 'filter'
|
.col-md-10.col-md-offset-1
|
||||||
.row
|
== render 'filter'
|
||||||
table.table.table-striped
|
rd-widget
|
||||||
thead
|
rd-widget-header title=t('.title')
|
||||||
tr
|
rd-widget-body class="no-padding"
|
||||||
th= t("activerecord.attributes.product_build_list.id")
|
table.table.table-striped
|
||||||
th= t("activerecord.attributes.product_build_list.status")
|
thead
|
||||||
th= t("activerecord.attributes.product_build_list.product")
|
tr
|
||||||
th= t("layout.product_build_lists.action")
|
th= t("activerecord.attributes.product_build_list.id")
|
||||||
th= t("activerecord.attributes.product_build_list.notified_at")
|
th= t("activerecord.attributes.product_build_list.status")
|
||||||
tbody
|
th= t("activerecord.attributes.product_build_list.product")
|
||||||
== render partial: 'platforms/product_build_lists/product_build_list', collection: @product_build_lists
|
th= t("layout.product_build_lists.action")
|
||||||
|
tbody
|
||||||
= will_paginate @product_build_lists
|
== render partial: 'platforms/product_build_lists/product_build_list', collection: @product_build_lists
|
||||||
|
rd-widget-footer
|
||||||
|
= will_paginate @product_build_lists
|
||||||
|
|
|
@ -9,6 +9,7 @@ en:
|
||||||
top_menu:
|
top_menu:
|
||||||
projects: Projects
|
projects: Projects
|
||||||
build_lists: Build Lists
|
build_lists: Build Lists
|
||||||
|
product_build_lists: Product Build Lists
|
||||||
platforms: Platforms
|
platforms: Platforms
|
||||||
groups: Groups
|
groups: Groups
|
||||||
statistics: Statistics
|
statistics: Statistics
|
||||||
|
|
|
@ -4,6 +4,9 @@ ru:
|
||||||
repositories: Репозитории
|
repositories: Репозитории
|
||||||
personal_repository: Мой репозиторий
|
personal_repository: Мой репозиторий
|
||||||
top_menu:
|
top_menu:
|
||||||
|
projects: Проекты
|
||||||
|
build_lists: Билды
|
||||||
|
product_build_lists: ISO Билды
|
||||||
platforms: Платформы
|
platforms: Платформы
|
||||||
groups: Группы
|
groups: Группы
|
||||||
statistics: Статистика
|
statistics: Статистика
|
||||||
|
|
Loading…
Reference in New Issue