大楼地址: | 140 W 36th St |
Building Alternate address: | 140 W 36th St |
邮政编码: | 10018 |
邻里: | Penn Plaza/Garment |
自治市镇: | Manhattan |
故事:: | 5 |
Year Built: | 1923 |
Building Class: | C |
Block & lot: | 00811-0055 |
There is limited specific historical information available about the building at 140 West 36th Street in Manhattan, New York City. However, the area is part of the Garment District, which has a rich history dating back to the early 20th century. The Garment District was once the hub of the U.S. garment industry, with many factories and showrooms located there.
For more detailed historical information about specific buildings in this area, local historical societies or the New York City Landmarks Preservation Commission might be useful resources.
To save an address like "140 W 36th St, Manhattan, NYC" in a Django model field and convert it to HTML, you can use a `CharField` or `TextField` in your model. However, converting it to HTML directly isn't necessary unless you're adding HTML tags to it. Here's how you might represent this in a Django model and then display it in HTML:
### Django Model
python
from django.db import models
class Address(models.Model):
address = models.CharField(max_length=200)
# Example usage:
address_obj = Address.objects.create(address="140 W 36th St, Manhattan, NYC")
### HTML Representation
If you want to display this address in an HTML template, you can do so by accessing the `address` attribute of your model instance:
{{ address_obj.address }}
If you want to add HTML tags to the address for styling or other purposes, you can do so directly in the template or in your view before passing it to the template.
### Adding HTML Tags
For example, if you want to make the street number bold, you could do something like this in your template:
{{ address_obj.address|safe }}
And in your view or model, you could preprocess the address to add HTML tags:
python
from django.utils.html import mark_safe
# In your view or model
address_obj.address = mark_safe("140
W 36th St, Manhattan, NYC")
However, be cautious with `mark_safe` and `|safe` as they can introduce security risks if used with untrusted input.
### Full Example
Here's a complete example of how you might create a Django model, save an address, and display it in an HTML template:
#### models.py
python
from django.db import models
class Address(models.Model):
address = models.CharField(max_length=200)
#### views.py
python
from django.shortcuts import render
from .models import Address
def show_address(request):
address_obj = Address.objects.create(address="140 W 36th St, Manhattan, NYC")
return render(request, 'address.html', {'address_obj': address_obj})
#### address.html
Address
{{ address_obj.address }}
This setup allows you to save and display addresses in Django without converting them to HTML unless you explicitly add HTML tags for styling or other purposes.
140 W 36th St, Manhattan, NYC Building Amenities
- Bus Line: Conveniently located near bus routes.
- Metro/Subway: Close proximity to subway stations.
- Central AC: Tenant-controlled air conditioning for comfort.
- Wet Pantry: Available for tenant use.
- ADA Compliant Bathrooms: Ensuring accessibility for all.
- Furniture Included: Optional for tenants.
- High Ceilings: Spacious open layout.
140 W 36th St, Manhattan, NYC
This building offers a variety of office spaces, with a total of 1 office space available for lease. The building spans 2,300 square feet.
Current Tenants by Business Type:
- Office Tenants:
- Example Office Tenant 1
- Example Office Tenant 2
- Retail Tenants:
- Example Retail Tenant 1
- Example Retail Tenant 2
**Note:** The actual list of tenants should be inserted in place of the example entries. The provided search results do not include specific details about the current tenants at 140 W 36th St, Manhattan, NYC.
To save this HTML in a Django model field, ensure the field is defined as a `TextField` or similar in your model:
python
from django.db import models
class BuildingDetails(models.Model):
building_html = models.TextField()
Then, you can save the HTML content into this field using Django's ORM:
python
building_details = BuildingDetails.objects.create(building_html=your_html_content)
Internet Providers at 140 W 36th St, Manhattan, NYC:
- Verizon: Offers Fios service with speeds up to 2.3 Gbps. Available in much of Manhattan, including parts of Midtown.
- Astound Broadband Powered by RCN: Provides cable and fiber services with speeds up to 1.5 Gbps. Coverage is widespread but may vary in certain areas.
- Spectrum: Offers cable internet with speeds up to 1 Gbps. Widely available across Manhattan.
- Other Providers: Additional options like Optimum, Xfinity, and fixed wireless services may also be available depending on the specific location.
Location: 140 W 36th St, Manhattan, NYC
Transportation Options:
- Subway: Nearest stations include Times Sq-42 St, 34 St-Herald Sq, and 34 St-Penn Station. Lines available: 1, 3, 7X, B, F, R, W.
- Bus: Nearby bus stops include 7 Av/W 36 St, New York Midtown West, and 7 Av/W 37 St. Bus lines: M20, M55, M7, Q32, QM10.
- Train: Nearest train station is 33rd Street. Lines available: HARLEM, LONG BEACH BRANCH, PATH, PORT WASHINGTON BRANCH.
Cross Streets: 7th Avenue and 6th Avenue.
None
None