mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
d86abf49e6
Show LastUpdatedBy on Dashboard GitOrigin-RevId: 11760e575a46f061d4aa9059a0c1e813b9adb1f9
125 lines
3.7 KiB
Text
125 lines
3.7 KiB
Text
td.project-list-table-name-cell(ng-if-start="!project.isV1Project")
|
||
.project-list-table-name-container
|
||
input.project-list-table-select-item(
|
||
select-individual,
|
||
type="checkbox",
|
||
ng-disabled="shouldDisableCheckbox(project)",
|
||
ng-model="project.selected"
|
||
stop-propagation="click"
|
||
aria-label=translate('select_project') + " '{{ project.name }}'"
|
||
)
|
||
span.project-list-table-name
|
||
a.project-list-table-name-link(
|
||
ng-href="{{projectLink(project)}}"
|
||
stop-propagation="click"
|
||
) {{project.name}}
|
||
span(
|
||
ng-controller="TagListController"
|
||
)
|
||
.tag-label(
|
||
ng-repeat='tag in project.tags'
|
||
stop-propagation="click"
|
||
)
|
||
button.label.label-default.tag-label-name(
|
||
ng-click="selectTag(tag)"
|
||
aria-label="Select tag {{ tag.name }}"
|
||
)
|
||
i.fa.fa-circle(
|
||
aria-hidden="true"
|
||
ng-style="{ 'color': 'hsl({{ getHueForTagId(tag._id) }}, 70%, 45%)' }"
|
||
)
|
||
| {{tag.name}}
|
||
button.label.label-default.tag-label-remove(
|
||
ng-click="removeProjectFromTag(project, tag)"
|
||
aria-label="Remove tag {{ tag.name }}"
|
||
) ×
|
||
|
||
td.project-list-table-owner-cell
|
||
span.owner {{getOwnerName(project)}}
|
||
|
|
||
i.fa.fa-question-circle.small(
|
||
ng-if="hasGenericOwnerName()"
|
||
tooltip="This project is owned by a user who hasn’t yet migrated their account to Overleaf v2"
|
||
tooltip-append-to-body="true"
|
||
aria-hidden="true"
|
||
)
|
||
span(ng-if="isLinkSharingProject(project)")
|
||
|
|
||
i.fa.fa-link.small(
|
||
tooltip=translate("link_sharing")
|
||
tooltip-placement="right"
|
||
tooltip-append-to-body="true"
|
||
aria-hidden="true"
|
||
)
|
||
span.sr-only #{translate("link_sharing")}
|
||
|
||
td.project-list-table-lastupdated-cell
|
||
span.last-modified(tooltip="{{project.lastUpdated | formatDate}}")
|
||
| {{project.lastUpdated | fromNowDate}}
|
||
span(ng-show='project.lastUpdatedBy')
|
||
|
|
||
| #{translate('by')}
|
||
| {{getUserName(project.lastUpdatedBy)}}
|
||
|
||
|
||
td.project-list-table-actions-cell(ng-if-end)
|
||
div(
|
||
ng-if="!project.isTableActionInflight"
|
||
)
|
||
button.btn.btn-link.action-btn(
|
||
aria-label=translate('copy'),
|
||
tooltip=translate('copy'),
|
||
tooltip-placement="top",
|
||
tooltip-append-to-body="true",
|
||
ng-click="clone($event)"
|
||
)
|
||
i.icon.fa.fa-files-o(aria-hidden="true")
|
||
button.btn.btn-link.action-btn(
|
||
aria-label=translate('download'),
|
||
tooltip=translate('download'),
|
||
tooltip-placement="top",
|
||
tooltip-append-to-body="true",
|
||
ng-click="download($event)"
|
||
)
|
||
i.icon.fa.fa-cloud-download(aria-hidden="true")
|
||
button.btn.btn-link.action-btn(
|
||
ng-if="!project.archived && isOwner()"
|
||
aria-label=translate('archive'),
|
||
tooltip=translate('archive'),
|
||
tooltip-placement="top",
|
||
tooltip-append-to-body="true",
|
||
ng-click="archiveOrLeave($event)"
|
||
)
|
||
i.icon.fa.fa-inbox(aria-hidden="true")
|
||
button.btn.btn-link.action-btn(
|
||
ng-if="!isOwner()"
|
||
aria-label=translate('leave'),
|
||
tooltip=translate('leave'),
|
||
tooltip-placement="top",
|
||
tooltip-append-to-body="true",
|
||
ng-click="archiveOrLeave($event)"
|
||
)
|
||
i.icon.fa.fa-sign-out(aria-hidden="true")
|
||
button.btn.btn-link.action-btn(
|
||
ng-if="project.archived && isOwner()"
|
||
aria-label=translate('unarchive'),
|
||
tooltip=translate('unarchive'),
|
||
tooltip-placement="top",
|
||
tooltip-append-to-body="true",
|
||
ng-click="restore($event)"
|
||
)
|
||
i.icon.fa.fa-reply(aria-hidden="true")
|
||
button.btn.btn-link.action-btn(
|
||
ng-if="project.archived && isOwner()"
|
||
aria-label=translate('delete_forever'),
|
||
tooltip=translate('delete_forever'),
|
||
tooltip-placement="top",
|
||
tooltip-append-to-body="true",
|
||
ng-click="deleteProject($event)"
|
||
)
|
||
i.icon.fa.fa-trash(aria-hidden="true")
|
||
div(
|
||
ng-if="project.isTableActionInflight"
|
||
aria-label=translate('processing')
|
||
)
|
||
i.fa.fa-spinner.fa-spin(aria-hidden="true")
|