مراية لـ
https://github.com/postalserver/postal.git
تم المزامنة 2025-12-01 05:43:04 +00:00
36 أسطر
1.5 KiB
Plaintext
36 أسطر
1.5 KiB
Plaintext
- page_title << @server.name
|
|
- page_title << "Routing"
|
|
- page_title << "Address Endpoints"
|
|
|
|
= render 'servers/sidebar', :active_server => @server
|
|
= render 'servers/header', :active_nav => :routing
|
|
= render 'routes/header', :active_nav => :address_endpoints
|
|
.pageContent.pageContent--compact
|
|
|
|
- if @address_endpoints.empty?
|
|
.noData.noData--clean
|
|
%h2.noData__title There aren't any address endpoints yet.
|
|
%p.noData__text
|
|
Address endpoints are e-mail addresses hosted on other platforms that you'd
|
|
like to deliver e-mails to. Once you've created these, you can send messages
|
|
to them by creating #{link_to 'routes', [organization, @server, :routes], :class => 'u-link'}.
|
|
%p.noData__button
|
|
= link_to "Add your first address endpoint", [:new, organization, @server, :address_endpoint], :class => 'button button--positive'
|
|
|
|
- else
|
|
|
|
%ul.endpointList.u-margin
|
|
- for endpoint in @address_endpoints
|
|
%li.endpointList__item
|
|
= link_to [:edit, organization, @server, endpoint], :class => 'endpointList__link' do
|
|
.endpointList__main
|
|
%p.endpointList__name= endpoint.address
|
|
%ul.endpointList__details
|
|
%li.endpointList__detailItem
|
|
- if endpoint.last_used_at
|
|
Last used #{distance_of_time_in_words_to_now endpoint.last_used_at} ago
|
|
- else
|
|
Not used yet
|
|
|
|
%p.u-center= link_to "Add another address endpoint", [:new, organization, @server, :address_endpoint], :class => 'button button--positive'
|