Indirizzo dell'edificio: | 323 W 39th St |
Nome Immobile: | Elizabeth Foundation for the Arts Condominium |
Building Alternate address: | 323 W 39th St |
Codice postale: | 10018 |
Quartiere: | Penn Plaza/Garment |
Distretto: | Manhattan |
# Storie: | 12 |
Year Built: | 1925 |
Building Class: | C |
323 West 39th Street, Manhattan, NYC
This building, located in the Garment District of Manhattan, was constructed in 1925. It is a 12-story structure with a total area of 75,774 square feet. The property is classified as a Special Condominium Billing Lot (R0) and features four commercial units.
Today, the building is home to the Elizabeth Foundation for the Arts (EFA) Center, which hosts numerous artist studios and arts programming. The EFA Center is renowned for its Open Studios event, where the public can explore artist studios and engage with a vibrant community of professional artists.
The building's location offers easy access to major transportation hubs, including the subway station at 8th Avenue and 40th Street, and several bus routes.
To convert an address like "323 W 39th St, Manhattan, NYC" into HTML and save it in a Django model field, you can use a simple HTML formatting approach. Here's how you might do it:
1. **Create a Django Model Field**:
First, ensure you have a model field in your Django model where you can store this formatted address. For simplicity, you can use a `TextField`.
python
from django.db import models
class AddressModel(models.Model):
address = models.TextField()
2. **Format the Address as HTML**:
You can format the address using HTML tags to make it more readable or visually appealing.
python
address = "323 W 39th St, Manhattan, NYC"
formatted_address = f"
{address}
"
3. **Save the Formatted Address**:
Now, save this formatted address in your Django model.
python
address_obj = AddressModel(address=formatted_address)
address_obj.save()
4. **Display in a Template**:
When displaying this address in a Django template, ensure you use the `safe` filter to prevent Django from escaping the HTML.
{{ address_obj.address | safe }}
### Complete Example
Here's a complete example of how you might implement this in a Django view and template:
#### models.py
python
from django.db import models
class AddressModel(models.Model):
address = models.TextField()
#### views.py
python
from django.shortcuts import render
from .models import AddressModel
def display_address(request):
address = "323 W 39th St, Manhattan, NYC"
formatted_address = f"
{address}
"
# Save or retrieve the address
address_obj, created = AddressModel.objects.get_or_create(address=formatted_address)
return render(request, 'display_address.html', {'address_obj': address_obj})
#### display_address.html
{{ address_obj.address | safe }}
This approach allows you to store and display formatted addresses in your Django application. If you need more complex formatting or additional features, consider using a template filter or a third-party library for more advanced text processing.
323 W 39th St, Manhattan, NYC Building Amenities:
- Attended Lobby with 24/7 access
- New Passenger and Freight Elevators
- Private Terrance with Wood Deck on the 11th floor
- 7 Offices + Conference Room
- Full Pantry, Reception, + 2 Bathrooms
- Operable Windows and 11.5 Ceilings
- Great Location near Hudson Yards, Port Authority, and the NY Times Building
- Steps from A, C, and E Subway Lines
323 W 39th St, Manhattan, NYC
Located in the heart of Manhattan, this building is home to a variety of businesses.
Current Office and Retail Tenants:
- World Insurance Associates LLC - Insurance Services
- EFA Studio Program - Art Studios and Program Management
Office Hours:
- World Insurance Associates LLC: Monday - Friday, 9:00 AM - 5:00 PM
- EFA Studio Program: Tuesday - Friday, 10:00 AM - 6:00 PM
Contact Information:
- World Insurance Associates LLC: (212) 578-9667
- EFA Studio Program: (212) 563-5855
To convert the text about internet providers at 323 W 39th St, Manhattan, NYC into HTML and save it in a Django model field, you can use the following HTML structure. Since specific providers for this address are not detailed in the search results, I'll use general information about Manhattan's internet providers:
Internet Providers at 323 W 39th St, Manhattan, NYC:
- Verizon Fios: Known for high speeds up to 2 Gbps, reliable service, and competitive pricing starting at $49.99.
- Astound Broadband Powered by RCN: Offers both cable and fiber services with speeds up to 1.5 Gbps and unlimited data.
- Spectrum: Provides cable internet with speeds up to 1 Gbps and widespread coverage across Manhattan.
To save this HTML in a Django model field, ensure the field is a `TextField` or similar, and you can use Django's built-in `mark_safe` function to render it as HTML in templates:
python
from django.utils.safestring import mark_safe
# Assuming 'html_content' is the field in your model
model_instance.html_content = mark_safe("""
Internet Providers at 323 W 39th St, Manhattan, NYC:
- Verizon Fios: Known for high speeds up to 2 Gbps, reliable service, and competitive pricing starting at $49.99.
- Astound Broadband Powered by RCN: Offers both cable and fiber services with speeds up to 1.5 Gbps and unlimited data.
- Spectrum: Provides cable internet with speeds up to 1 Gbps and widespread coverage across Manhattan.
""")
Then, in your Django template, you can render this field as HTML:
{{ model_instance.html_content|safe }}
323 W 39th St, Manhattan, NYC is conveniently located near several transportation options:
- Bus Stops: W 40th St & 8th Ave, 8 Av/W 40 St, 9 Av/W 40 St, New York Port Authority Bus Station, and others are within a short walking distance.
- Subway Stations: 42 St-Port Authority Bus Terminal and 42 St-Bryant Pk are the nearest, both about a 3-minute walk away.
- Train Station: 34 St-Penn Station is approximately a 10-minute walk.
Cross streets include 8th Avenue and 9th Avenue.
None
None